pub trait ISpatialAudioClient2_Impl: Sized + ISpatialAudioClient_Impl {
    // Required methods
    fn IsOffloadCapable(&self, category: AUDIO_STREAM_CATEGORY) -> Result<BOOL>;
    fn GetMaxFrameCountForCategory(
        &self,
        category: AUDIO_STREAM_CATEGORY,
        offloadenabled: BOOL,
        objectformat: *const WAVEFORMATEX
    ) -> Result<u32>;
}

Required Methods§

fn IsOffloadCapable(&self, category: AUDIO_STREAM_CATEGORY) -> Result<BOOL>

fn GetMaxFrameCountForCategory( &self, category: AUDIO_STREAM_CATEGORY, offloadenabled: BOOL, objectformat: *const WAVEFORMATEX ) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§