pub trait IDirectSoundFXDistortion_Impl: Sized {
    // Required methods
    fn SetAllParameters(
        &self,
        pcdsfxdistortion: *const DSFXDistortion
    ) -> Result<()>;
    fn GetAllParameters(
        &self,
        pdsfxdistortion: *mut DSFXDistortion
    ) -> Result<()>;
}

Required Methods§

fn SetAllParameters( &self, pcdsfxdistortion: *const DSFXDistortion ) -> Result<()>

fn GetAllParameters(&self, pdsfxdistortion: *mut DSFXDistortion) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§