pub trait IDirectSoundCaptureFXAec_Impl: Sized {
    // Required methods
    fn SetAllParameters(&self, pdscfxaec: *const DSCFXAec) -> Result<()>;
    fn GetAllParameters(&self) -> Result<DSCFXAec>;
    fn GetStatus(&self) -> Result<u32>;
    fn Reset(&self) -> Result<()>;
}

Required Methods§

fn SetAllParameters(&self, pdscfxaec: *const DSCFXAec) -> Result<()>

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

fn GetStatus(&self) -> Result<u32>

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

Object Safety§

This trait is not object safe.

Implementors§