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 | |
CreateSoundBuffer | |
GetCaps | |
DuplicateSoundBuffer | |
SetCooperativeLevel | |
Compact | |
GetSpeakerConfig | |
SetSpeakerConfig | |
Initialize | |
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).
Search functions by type signature (e.g.
vec -> usize)