pub trait IAudioSourceProvider_Impl: Sized {
    // Required method
    fn ProvideInput(
        &self,
        dwsamplecount: u32,
        pdwchannelcount: *mut u32,
        pinterleavedaudiodata: *mut f32
    ) -> Result<()>;
}

Required Methods§

fn ProvideInput( &self, dwsamplecount: u32, pdwchannelcount: *mut u32, pinterleavedaudiodata: *mut f32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§