pub trait IDirectMusicThru_Impl: Sized {
    // Required method
    fn ThruChannel(
        &self,
        dwsourcechannelgroup: u32,
        dwsourcechannel: u32,
        dwdestinationchannelgroup: u32,
        dwdestinationchannel: u32,
        pdestinationport: Option<&IDirectMusicPort>
    ) -> Result<()>;
}

Required Methods§

fn ThruChannel( &self, dwsourcechannelgroup: u32, dwsourcechannel: u32, dwdestinationchannelgroup: u32, dwdestinationchannel: u32, pdestinationport: Option<&IDirectMusicPort> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§