pub trait IMFContentDecryptionModuleFactory_Impl: Sized {
    // Required methods
    fn IsTypeSupported(&self, keysystem: &PCWSTR, contenttype: &PCWSTR) -> BOOL;
    fn CreateContentDecryptionModuleAccess(
        &self,
        keysystem: &PCWSTR,
        configurations: *const Option<IPropertyStore>,
        numconfigurations: u32
    ) -> Result<IMFContentDecryptionModuleAccess>;
}

Required Methods§

fn IsTypeSupported(&self, keysystem: &PCWSTR, contenttype: &PCWSTR) -> BOOL

fn CreateContentDecryptionModuleAccess( &self, keysystem: &PCWSTR, configurations: *const Option<IPropertyStore>, numconfigurations: u32 ) -> Result<IMFContentDecryptionModuleAccess>

Object Safety§

This trait is not object safe.

Implementors§