pub trait IDirectSoundCaptureFXNoiseSuppress_Impl: Sized {
    // Required methods
    fn SetAllParameters(
        &self,
        pcdscfxnoisesuppress: *const DSCFXNoiseSuppress
    ) -> Result<()>;
    fn GetAllParameters(&self) -> Result<DSCFXNoiseSuppress>;
    fn Reset(&self) -> Result<()>;
}

Required Methods§

fn SetAllParameters( &self, pcdscfxnoisesuppress: *const DSCFXNoiseSuppress ) -> Result<()>

fn GetAllParameters(&self) -> Result<DSCFXNoiseSuppress>

fn Reset(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§