pub trait IAudioEndpointVolumeCallback_Impl: Sized {
    // Required method
    fn OnNotify(
        &self,
        pnotify: *mut AUDIO_VOLUME_NOTIFICATION_DATA
    ) -> Result<()>;
}

Required Methods§

fn OnNotify(&self, pnotify: *mut AUDIO_VOLUME_NOTIFICATION_DATA) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§