Struct audio_device_windows_sys::Windows::Win32::Audio::IDirectMusicSynth[][src]

#[repr(transparent)]pub struct IDirectMusicSynth(_);

Implementations

impl IDirectMusicSynth[src]

pub unsafe fn Open(&self, pportparams: *mut DMUS_PORTPARAMS8) -> HRESULT[src]

pub unsafe fn Close(&self) -> HRESULT[src]

pub unsafe fn SetNumChannelGroups(&self, dwgroups: u32) -> HRESULT[src]

pub unsafe fn Download(
    &self,
    phdownload: *mut HANDLE,
    pvdata: *mut c_void,
    pbfree: *mut i32
) -> HRESULT
[src]

pub unsafe fn Unload<'a>(
    &self,
    hdownload: impl IntoParam<'a, HANDLE>,
    lpfreehandle: *mut *mut *mut *mut *mut *mut *mut *mut *mut *mut *mut HRESULT,
    huserdata: impl IntoParam<'a, HANDLE>
) -> HRESULT
[src]

pub unsafe fn PlayBuffer(
    &self,
    rt: i64,
    pbbuffer: *mut u8,
    cbbuffer: u32
) -> HRESULT
[src]

pub unsafe fn GetRunningStats(&self, pstats: *mut DMUS_SYNTHSTATS) -> HRESULT[src]

pub unsafe fn GetPortCaps(&self, pcaps: *mut DMUS_PORTCAPS) -> HRESULT[src]

pub unsafe fn Activate<'a>(&self, fenable: impl IntoParam<'a, BOOL>) -> HRESULT[src]

pub unsafe fn SetSynthSink<'a>(
    &self,
    psynthsink: impl IntoParam<'a, IDirectMusicSynthSink>
) -> HRESULT
[src]

pub unsafe fn Render(
    &self,
    pbuffer: *mut i16,
    dwlength: u32,
    llposition: i64
) -> HRESULT
[src]

pub unsafe fn SetChannelPriority(
    &self,
    dwchannelgroup: u32,
    dwchannel: u32,
    dwpriority: u32
) -> HRESULT
[src]

pub unsafe fn GetChannelPriority(
    &self,
    dwchannelgroup: u32,
    dwchannel: u32,
    pdwpriority: *mut u32
) -> HRESULT
[src]

pub unsafe fn GetFormat(
    &self,
    pwaveformatex: *mut WAVEFORMATEX,
    pdwwaveformatexsize: *mut u32
) -> HRESULT
[src]

pub unsafe fn GetAppend(&self, pdwappend: *mut u32) -> HRESULT[src]

Trait Implementations

impl Clone for IDirectMusicSynth[src]

impl Debug for IDirectMusicSynth[src]

impl Eq for IDirectMusicSynth[src]

impl From<&'_ IDirectMusicSynth8> for IDirectMusicSynth[src]

impl From<IDirectMusicSynth8> for IDirectMusicSynth[src]

impl Interface for IDirectMusicSynth[src]

type Vtable = IDirectMusicSynth_abi

impl<'a> IntoParam<'a, IDirectMusicSynth> for IDirectMusicSynth8[src]

impl<'a> IntoParam<'a, IDirectMusicSynth> for &'a IDirectMusicSynth8[src]

impl<'a> IntoParam<'a, IUnknown> for IDirectMusicSynth[src]

impl<'a> IntoParam<'a, IUnknown> for &'a IDirectMusicSynth[src]

impl PartialEq<IDirectMusicSynth> for IDirectMusicSynth[src]

impl StructuralEq for IDirectMusicSynth[src]

impl StructuralPartialEq for IDirectMusicSynth[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Abi for T where
    T: Interface
[src]

type Abi = *mut c_void

The abi representation of the implementing type. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> IntoParam<'a, T> for T where
    T: Abi
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.