pub trait IAudioChannelConfig_Impl: Sized {
    // Required methods
    fn SetChannelConfig(
        &self,
        dwconfig: u32,
        pguideventcontext: *const GUID
    ) -> Result<()>;
    fn GetChannelConfig(&self) -> Result<u32>;
}

Required Methods§

fn SetChannelConfig( &self, dwconfig: u32, pguideventcontext: *const GUID ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§