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

Required Methods§

fn GetPreferredClsid(&self, plugintype: u32, selector: &PCWSTR) -> Result<GUID>

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

fn SetPreferredClsid( &self, plugintype: u32, selector: &PCWSTR, clsid: *const GUID ) -> Result<()>

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

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

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

Object Safety§

This trait is not object safe.

Implementors§