windows::Win32::Media::DirectShow

Trait IAMCertifiedOutputProtection_Impl

pub trait IAMCertifiedOutputProtection_Impl: IUnknownImpl {
    // Required methods
    fn KeyExchange(
        &self,
        prandom: *mut GUID,
        varlencertgh: *mut *mut u8,
        pdwlengthcertgh: *mut u32,
    ) -> Result<()>;
    fn SessionSequenceStart(&self, psig: *const AMCOPPSignature) -> Result<()>;
    fn ProtectionCommand(&self, cmd: *const AMCOPPCommand) -> Result<()>;
    fn ProtectionStatus(
        &self,
        pstatusinput: *const AMCOPPStatusInput,
        pstatusoutput: *mut AMCOPPStatusOutput,
    ) -> Result<()>;
}

Required Methods§

fn KeyExchange( &self, prandom: *mut GUID, varlencertgh: *mut *mut u8, pdwlengthcertgh: *mut u32, ) -> Result<()>

fn SessionSequenceStart(&self, psig: *const AMCOPPSignature) -> Result<()>

fn ProtectionCommand(&self, cmd: *const AMCOPPCommand) -> Result<()>

fn ProtectionStatus( &self, pstatusinput: *const AMCOPPStatusInput, pstatusoutput: *mut AMCOPPStatusOutput, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§