pub trait IBDA_TIF_REGISTRATION_Impl: Sized {
    // Required methods
    fn RegisterTIFEx(
        &self,
        ptifinputpin: Option<&IPin>,
        ppvregistrationcontext: *mut u32,
        ppmpeg2datacontrol: *mut Option<IUnknown>
    ) -> Result<()>;
    fn UnregisterTIF(&self, pvregistrationcontext: u32) -> Result<()>;
}

Required Methods§

fn RegisterTIFEx( &self, ptifinputpin: Option<&IPin>, ppvregistrationcontext: *mut u32, ppmpeg2datacontrol: *mut Option<IUnknown> ) -> Result<()>

fn UnregisterTIF(&self, pvregistrationcontext: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§