pub trait IMFAudioPolicy_Impl: Sized {
    // Required methods
    fn SetGroupingParam(&self, rguidclass: *const GUID) -> Result<()>;
    fn GetGroupingParam(&self) -> Result<GUID>;
    fn SetDisplayName(&self, pszname: &PCWSTR) -> Result<()>;
    fn GetDisplayName(&self) -> Result<PWSTR>;
    fn SetIconPath(&self, pszpath: &PCWSTR) -> Result<()>;
    fn GetIconPath(&self) -> Result<PWSTR>;
}

Required Methods§

fn SetGroupingParam(&self, rguidclass: *const GUID) -> Result<()>

fn GetGroupingParam(&self) -> Result<GUID>

fn SetDisplayName(&self, pszname: &PCWSTR) -> Result<()>

fn GetDisplayName(&self) -> Result<PWSTR>

fn SetIconPath(&self, pszpath: &PCWSTR) -> Result<()>

fn GetIconPath(&self) -> Result<PWSTR>

Object Safety§

This trait is not object safe.

Implementors§