Home
last modified time | relevance | path

Searched refs:lpDSCCaps (Results 1 – 3 of 3) sorted by relevance

/reactos/dll/directx/wine/dsound/
H A Dcapture.c1256 LPDSCCAPS lpDSCCaps ) in IDirectSoundCaptureImpl_GetCaps() argument
1259 TRACE("(%p,%p)\n",This,lpDSCCaps); in IDirectSoundCaptureImpl_GetCaps()
1266 if (lpDSCCaps== NULL) { in IDirectSoundCaptureImpl_GetCaps()
1271 if (lpDSCCaps->dwSize < sizeof(*lpDSCCaps)) { in IDirectSoundCaptureImpl_GetCaps()
1272 WARN("invalid parameter: lpDSCCaps->dwSize = %d\n", lpDSCCaps->dwSize); in IDirectSoundCaptureImpl_GetCaps()
1276 lpDSCCaps->dwFlags = This->device->drvcaps.dwFlags; in IDirectSoundCaptureImpl_GetCaps()
1277 lpDSCCaps->dwFormats = This->device->drvcaps.dwFormats; in IDirectSoundCaptureImpl_GetCaps()
1278 lpDSCCaps->dwChannels = This->device->drvcaps.dwChannels; in IDirectSoundCaptureImpl_GetCaps()
1280 TRACE("(flags=0x%08x,format=0x%08x,channels=%d)\n",lpDSCCaps->dwFlags, in IDirectSoundCaptureImpl_GetCaps()
1281 lpDSCCaps->dwFormats, lpDSCCaps->dwChannels); in IDirectSoundCaptureImpl_GetCaps()
H A Dduplex.c361 LPDSCCAPS lpDSCCaps) in IDirectSoundFullDuplex_IDirectSoundCapture_GetCaps() argument
364 TRACE("(%p,%p)\n",This,lpDSCCaps); in IDirectSoundFullDuplex_IDirectSoundCapture_GetCaps()
365 return IDirectSoundCapture_GetCaps(This->pdsfd->capture_device, lpDSCCaps); in IDirectSoundFullDuplex_IDirectSoundCapture_GetCaps()
/reactos/sdk/include/psdk/
H A Ddsound.h727 STDMETHOD(GetCaps)(THIS_ LPDSCCAPS lpDSCCaps) PURE; in DECLARE_INTERFACE_()