pub trait IAudioVolumeDuckNotification_Impl: Sized {
    // Required methods
    fn OnVolumeDuckNotification(
        &self,
        sessionid: &PCWSTR,
        countcommunicationsessions: u32
    ) -> Result<()>;
    fn OnVolumeUnduckNotification(&self, sessionid: &PCWSTR) -> Result<()>;
}

Required Methods§

fn OnVolumeDuckNotification( &self, sessionid: &PCWSTR, countcommunicationsessions: u32 ) -> Result<()>

fn OnVolumeUnduckNotification(&self, sessionid: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§