pub trait IAudioEndpointOffloadStreamVolume_Impl: Sized {
    // Required methods
    fn GetVolumeChannelCount(&self) -> Result<u32>;
    fn SetChannelVolumes(
        &self,
        u32channelcount: u32,
        pf32volumes: *const f32,
        u32curvetype: AUDIO_CURVE_TYPE,
        pcurveduration: *const i64
    ) -> Result<()>;
    fn GetChannelVolumes(&self, u32channelcount: u32) -> Result<f32>;
}

Required Methods§

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

fn SetChannelVolumes( &self, u32channelcount: u32, pf32volumes: *const f32, u32curvetype: AUDIO_CURVE_TYPE, pcurveduration: *const i64 ) -> Result<()>

fn GetChannelVolumes(&self, u32channelcount: u32) -> Result<f32>

Object Safety§

This trait is not object safe.

Implementors§