[][src]Struct winapi::um::dsound::IDirectSoundVtbl

#[repr(C)]
pub struct IDirectSoundVtbl {
    pub parent: IUnknownVtbl,
    pub CreateSoundBuffer: unsafe extern "system" fn(This: *mut IDirectSound, pcDSBufferDesc: LPCDSBUFFERDESC, ppDSBuffer: *mut LPDIRECTSOUNDBUFFER, pUnkOuter: LPUNKNOWN) -> HRESULT,
    pub GetCaps: unsafe extern "system" fn(This: *mut IDirectSound, pDSCaps: LPDSCAPS) -> HRESULT,
    pub DuplicateSoundBuffer: unsafe extern "system" fn(This: *mut IDirectSound, pDSBufferOriginal: LPDIRECTSOUNDBUFFER, ppDSBufferDuplicate: *mut LPDIRECTSOUNDBUFFER) -> HRESULT,
    pub SetCooperativeLevel: unsafe extern "system" fn(This: *mut IDirectSound, hWnd: HWND, dwLevel: DWORD) -> HRESULT,
    pub Compact: unsafe extern "system" fn(This: *mut IDirectSound) -> HRESULT,
    pub GetSpeakerConfig: unsafe extern "system" fn(This: *mut IDirectSound, pdwSpeakerConfig: LPDWORD) -> HRESULT,
    pub SetSpeakerConfig: unsafe extern "system" fn(This: *mut IDirectSound, dwSpeakerConfig: DWORD) -> HRESULT,
    pub Initialize: unsafe extern "system" fn(This: *mut IDirectSound, pcGuidDevice: LPCGUID) -> HRESULT,
}

Fields

parent: IUnknownVtblCreateSoundBuffer: unsafe extern "system" fn(This: *mut IDirectSound, pcDSBufferDesc: LPCDSBUFFERDESC, ppDSBuffer: *mut LPDIRECTSOUNDBUFFER, pUnkOuter: LPUNKNOWN) -> HRESULTGetCaps: unsafe extern "system" fn(This: *mut IDirectSound, pDSCaps: LPDSCAPS) -> HRESULTDuplicateSoundBuffer: unsafe extern "system" fn(This: *mut IDirectSound, pDSBufferOriginal: LPDIRECTSOUNDBUFFER, ppDSBufferDuplicate: *mut LPDIRECTSOUNDBUFFER) -> HRESULTSetCooperativeLevel: unsafe extern "system" fn(This: *mut IDirectSound, hWnd: HWND, dwLevel: DWORD) -> HRESULTCompact: unsafe extern "system" fn(This: *mut IDirectSound) -> HRESULTGetSpeakerConfig: unsafe extern "system" fn(This: *mut IDirectSound, pdwSpeakerConfig: LPDWORD) -> HRESULTSetSpeakerConfig: unsafe extern "system" fn(This: *mut IDirectSound, dwSpeakerConfig: DWORD) -> HRESULTInitialize: unsafe extern "system" fn(This: *mut IDirectSound, pcGuidDevice: LPCGUID) -> HRESULT

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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