pub trait IMSVidStreamBufferSourceEvent3_Impl: Sized + IMSVidStreamBufferSourceEvent2_Impl {
    // Required methods
    fn BroadcastEvent(&self, guid: &BSTR) -> Result<()>;
    fn BroadcastEventEx(
        &self,
        guid: &BSTR,
        param1: u32,
        param2: u32,
        param3: u32,
        param4: u32
    ) -> Result<()>;
    fn COPPBlocked(&self) -> Result<()>;
    fn COPPUnblocked(&self) -> Result<()>;
    fn ContentPrimarilyAudio(&self) -> Result<()>;
}

Required Methods§

fn BroadcastEvent(&self, guid: &BSTR) -> Result<()>

fn BroadcastEventEx( &self, guid: &BSTR, param1: u32, param2: u32, param3: u32, param4: u32 ) -> Result<()>

fn COPPBlocked(&self) -> Result<()>

fn COPPUnblocked(&self) -> Result<()>

fn ContentPrimarilyAudio(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§