pub trait IAMPluginControl_Impl: Sized {
    // Required methods
    fn GetPreferredClsid(&self, subtype: *const GUID) -> Result<GUID>;
    fn GetPreferredClsidByIndex(
        &self,
        index: u32,
        subtype: *mut GUID,
        clsid: *mut GUID
    ) -> Result<()>;
    fn SetPreferredClsid(
        &self,
        subtype: *const GUID,
        clsid: *const GUID
    ) -> Result<()>;
    fn IsDisabled(&self, clsid: *const GUID) -> Result<()>;
    fn GetDisabledByIndex(&self, index: u32) -> Result<GUID>;
    fn SetDisabled(&self, clsid: *const GUID, disabled: BOOL) -> Result<()>;
    fn IsLegacyDisabled(&self, dllname: &PCWSTR) -> Result<()>;
}

Required Methods§

fn GetPreferredClsid(&self, subtype: *const GUID) -> Result<GUID>

fn GetPreferredClsidByIndex( &self, index: u32, subtype: *mut GUID, clsid: *mut GUID ) -> Result<()>

fn SetPreferredClsid( &self, subtype: *const GUID, clsid: *const GUID ) -> Result<()>

fn IsDisabled(&self, clsid: *const GUID) -> Result<()>

fn GetDisabledByIndex(&self, index: u32) -> Result<GUID>

fn SetDisabled(&self, clsid: *const GUID, disabled: BOOL) -> Result<()>

fn IsLegacyDisabled(&self, dllname: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§