pub trait IMFContentProtectionDevice_Impl: Sized {
    // Required methods
    fn InvokeFunction(
        &self,
        functionid: u32,
        inputbufferbytecount: u32,
        inputbuffer: *const u8,
        outputbufferbytecount: *mut u32,
        outputbuffer: *mut u8
    ) -> Result<()>;
    fn GetPrivateDataByteCount(
        &self,
        privateinputbytecount: *mut u32,
        privateoutputbytecount: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn InvokeFunction( &self, functionid: u32, inputbufferbytecount: u32, inputbuffer: *const u8, outputbufferbytecount: *mut u32, outputbuffer: *mut u8 ) -> Result<()>

fn GetPrivateDataByteCount( &self, privateinputbytecount: *mut u32, privateoutputbytecount: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§