pub trait IWMProfileManager_Impl: Sized {
    // Required methods
    fn CreateEmptyProfile(&self, dwversion: WMT_VERSION) -> Result<IWMProfile>;
    fn LoadProfileByID(&self, guidprofile: *const GUID) -> Result<IWMProfile>;
    fn LoadProfileByData(&self, pwszprofile: &PCWSTR) -> Result<IWMProfile>;
    fn SaveProfile(
        &self,
        piwmprofile: Option<&IWMProfile>,
        pwszprofile: &PCWSTR,
        pdwlength: *mut u32
    ) -> Result<()>;
    fn GetSystemProfileCount(&self) -> Result<u32>;
    fn LoadSystemProfile(&self, dwprofileindex: u32) -> Result<IWMProfile>;
}

Required Methods§

fn CreateEmptyProfile(&self, dwversion: WMT_VERSION) -> Result<IWMProfile>

fn LoadProfileByID(&self, guidprofile: *const GUID) -> Result<IWMProfile>

fn LoadProfileByData(&self, pwszprofile: &PCWSTR) -> Result<IWMProfile>

fn SaveProfile( &self, piwmprofile: Option<&IWMProfile>, pwszprofile: &PCWSTR, pdwlength: *mut u32 ) -> Result<()>

fn GetSystemProfileCount(&self) -> Result<u32>

fn LoadSystemProfile(&self, dwprofileindex: u32) -> Result<IWMProfile>

Object Safety§

This trait is not object safe.

Implementors§