pub trait IDirectMusicInstrument_Impl: Sized {
    // Required methods
    fn GetPatch(&self, pdwpatch: *mut u32) -> Result<()>;
    fn SetPatch(&self, dwpatch: u32) -> Result<()>;
}

Required Methods§

fn GetPatch(&self, pdwpatch: *mut u32) -> Result<()>

fn SetPatch(&self, dwpatch: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§