3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998 Rob Riggs
5 * Copyright 2000-2002 TransGaming Technologies, Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * Most thread locking is complete. There may be a few race
22 * conditions still lurking.
25 * Implement SetCooperativeLevel properly (need to address focus issues)
26 * Implement DirectSound3DBuffers (stubs in place)
27 * Use hardware 3D support if available
28 * Add critical section locking inside Release and AddRef methods
29 * Handle static buffers - put those in hardware, non-static not in hardware
30 * Hardware DuplicateSoundBuffer
31 * Proper volume calculation for 3d buffers
32 * Remove DS_HEL_FRAGS and use mixer fragment length for it
38 #define NONAMELESSUNION
47 #include "wine/debug.h"
61 #include "propkeydef.h"
65 #include "dsound_private.h"
67 WINE_DEFAULT_DEBUG_CHANNEL(dsound
);
69 struct list DSOUND_renderers
= LIST_INIT(DSOUND_renderers
);
70 CRITICAL_SECTION DSOUND_renderers_lock
;
71 static CRITICAL_SECTION_DEBUG DSOUND_renderers_lock_debug
=
73 0, 0, &DSOUND_renderers_lock
,
74 { &DSOUND_renderers_lock_debug
.ProcessLocksList
, &DSOUND_renderers_lock_debug
.ProcessLocksList
},
75 0, 0, { (DWORD_PTR
)(__FILE__
": DSOUND_renderers_lock") }
77 CRITICAL_SECTION DSOUND_renderers_lock
= { &DSOUND_renderers_lock_debug
, -1, 0, 0, 0, 0 };
79 struct list DSOUND_capturers
= LIST_INIT(DSOUND_capturers
);
80 CRITICAL_SECTION DSOUND_capturers_lock
;
81 static CRITICAL_SECTION_DEBUG DSOUND_capturers_lock_debug
=
83 0, 0, &DSOUND_capturers_lock
,
84 { &DSOUND_capturers_lock_debug
.ProcessLocksList
, &DSOUND_capturers_lock_debug
.ProcessLocksList
},
85 0, 0, { (DWORD_PTR
)(__FILE__
": DSOUND_capturers_lock") }
87 CRITICAL_SECTION DSOUND_capturers_lock
= { &DSOUND_capturers_lock_debug
, -1, 0, 0, 0, 0 };
89 GUID DSOUND_renderer_guids
[MAXWAVEDRIVERS
];
90 GUID DSOUND_capture_guids
[MAXWAVEDRIVERS
];
92 const WCHAR wine_vxd_drv
[] = L
"winemm.vxd";
94 /* All default settings, you most likely don't want to touch these, see wiki on UsefulRegistryKeys */
95 int ds_hel_buflen
= 32768 * 2;
98 * Get a config key from either the app-specific or the default config
101 static inline DWORD
get_config_key( HKEY defkey
, HKEY appkey
, const char *name
,
102 char *buffer
, DWORD size
)
104 if (appkey
&& !RegQueryValueExA( appkey
, name
, 0, NULL
, (LPBYTE
)buffer
, &size
)) return 0;
105 if (defkey
&& !RegQueryValueExA( defkey
, name
, 0, NULL
, (LPBYTE
)buffer
, &size
)) return 0;
106 return ERROR_FILE_NOT_FOUND
;
111 * Setup the dsound options.
114 void setup_dsound_options(void)
116 char buffer
[MAX_PATH
+16];
117 HKEY hkey
, appkey
= 0;
120 buffer
[MAX_PATH
]='\0';
122 /* @@ Wine registry key: HKCU\Software\Wine\DirectSound */
123 if (RegOpenKeyA( HKEY_CURRENT_USER
, "Software\\Wine\\DirectSound", &hkey
)) hkey
= 0;
125 len
= GetModuleFileNameA( 0, buffer
, MAX_PATH
);
126 if (len
&& len
< MAX_PATH
)
129 /* @@ Wine registry key: HKCU\Software\Wine\AppDefaults\app.exe\DirectSound */
130 if (!RegOpenKeyA( HKEY_CURRENT_USER
, "Software\\Wine\\AppDefaults", &tmpkey
))
132 char *p
, *appname
= buffer
;
133 if ((p
= strrchr( appname
, '/' ))) appname
= p
+ 1;
134 if ((p
= strrchr( appname
, '\\' ))) appname
= p
+ 1;
135 strcat( appname
, "\\DirectSound" );
136 TRACE("appname = [%s]\n", appname
);
137 if (RegOpenKeyA( tmpkey
, appname
, &appkey
)) appkey
= 0;
138 RegCloseKey( tmpkey
);
144 if (!get_config_key( hkey
, appkey
, "HelBuflen", buffer
, MAX_PATH
))
145 ds_hel_buflen
= atoi(buffer
);
147 if (appkey
) RegCloseKey( appkey
);
148 if (hkey
) RegCloseKey( hkey
);
150 TRACE("ds_hel_buflen = %d\n", ds_hel_buflen
);
153 static const char * get_device_id(LPCGUID pGuid
)
155 if (IsEqualGUID(&DSDEVID_DefaultPlayback
, pGuid
))
156 return "DSDEVID_DefaultPlayback";
157 else if (IsEqualGUID(&DSDEVID_DefaultVoicePlayback
, pGuid
))
158 return "DSDEVID_DefaultVoicePlayback";
159 else if (IsEqualGUID(&DSDEVID_DefaultCapture
, pGuid
))
160 return "DSDEVID_DefaultCapture";
161 else if (IsEqualGUID(&DSDEVID_DefaultVoiceCapture
, pGuid
))
162 return "DSDEVID_DefaultVoiceCapture";
163 return debugstr_guid(pGuid
);
166 static HRESULT
get_mmdevenum(IMMDeviceEnumerator
**devenum
)
170 init_hr
= CoInitialize(NULL
);
172 hr
= CoCreateInstance(&CLSID_MMDeviceEnumerator
, NULL
,
173 CLSCTX_INPROC_SERVER
, &IID_IMMDeviceEnumerator
, (void**)devenum
);
175 if(SUCCEEDED(init_hr
))
178 ERR("CoCreateInstance failed: %08lx\n", hr
);
185 static void release_mmdevenum(IMMDeviceEnumerator
*devenum
, HRESULT init_hr
)
187 IMMDeviceEnumerator_Release(devenum
);
188 if(SUCCEEDED(init_hr
))
192 static HRESULT
get_mmdevice_guid(IMMDevice
*device
, IPropertyStore
*ps
,
199 hr
= IMMDevice_OpenPropertyStore(device
, STGM_READ
, &ps
);
201 WARN("OpenPropertyStore failed: %08lx\n", hr
);
205 IPropertyStore_AddRef(ps
);
207 PropVariantInit(&pv
);
209 hr
= IPropertyStore_GetValue(ps
, &PKEY_AudioEndpoint_GUID
, &pv
);
211 IPropertyStore_Release(ps
);
212 WARN("GetValue(GUID) failed: %08lx\n", hr
);
216 CLSIDFromString(pv
.pwszVal
, guid
);
218 PropVariantClear(&pv
);
219 IPropertyStore_Release(ps
);
224 /***************************************************************************
225 * GetDeviceID [DSOUND.9]
227 * Retrieves unique identifier of default device specified
230 * pGuidSrc [I] Address of device GUID.
231 * pGuidDest [O] Address to receive unique device GUID.
235 * Failure: DSERR_INVALIDPARAM
238 * pGuidSrc is a valid device GUID or DSDEVID_DefaultPlayback,
239 * DSDEVID_DefaultCapture, DSDEVID_DefaultVoicePlayback, or
240 * DSDEVID_DefaultVoiceCapture.
241 * Returns pGuidSrc if pGuidSrc is a valid device or the device
242 * GUID for the specified constants.
244 HRESULT WINAPI
GetDeviceID(LPCGUID pGuidSrc
, LPGUID pGuidDest
)
246 IMMDeviceEnumerator
*devenum
;
247 EDataFlow flow
= (EDataFlow
)-1;
248 ERole role
= (ERole
)-1;
251 TRACE("(%s,%p)\n", get_device_id(pGuidSrc
),pGuidDest
);
253 if(!pGuidSrc
|| !pGuidDest
)
254 return DSERR_INVALIDPARAM
;
256 init_hr
= get_mmdevenum(&devenum
);
260 if(IsEqualGUID(&DSDEVID_DefaultPlayback
, pGuidSrc
)){
263 }else if(IsEqualGUID(&DSDEVID_DefaultVoicePlayback
, pGuidSrc
)){
264 role
= eCommunications
;
266 }else if(IsEqualGUID(&DSDEVID_DefaultCapture
, pGuidSrc
)){
269 }else if(IsEqualGUID(&DSDEVID_DefaultVoiceCapture
, pGuidSrc
)){
270 role
= eCommunications
;
274 if(role
!= (ERole
)-1 && flow
!= (EDataFlow
)-1){
277 hr
= IMMDeviceEnumerator_GetDefaultAudioEndpoint(devenum
,
278 flow
, role
, &device
);
280 WARN("GetDefaultAudioEndpoint failed: %08lx\n", hr
);
281 release_mmdevenum(devenum
, init_hr
);
282 return DSERR_NODRIVER
;
285 hr
= get_mmdevice_guid(device
, NULL
, pGuidDest
);
286 IMMDevice_Release(device
);
288 release_mmdevenum(devenum
, init_hr
);
290 return (hr
== S_OK
) ? DS_OK
: hr
;
293 release_mmdevenum(devenum
, init_hr
);
295 *pGuidDest
= *pGuidSrc
;
302 LPDSENUMCALLBACKA callA
;
306 static BOOL CALLBACK
a_to_w_callback(LPGUID guid
, LPCWSTR descW
, LPCWSTR modW
, LPVOID data
)
308 struct morecontext
*context
= data
;
309 char descA
[MAXPNAMELEN
], modA
[MAXPNAMELEN
];
311 WideCharToMultiByte(CP_ACP
, 0, descW
, -1, descA
, sizeof(descA
), NULL
, NULL
);
312 WideCharToMultiByte(CP_ACP
, 0, modW
, -1, modA
, sizeof(modA
), NULL
, NULL
);
314 return context
->callA(guid
, descA
, modA
, context
->data
);
317 /***************************************************************************
318 * DirectSoundEnumerateA [DSOUND.2]
320 * Enumerate all DirectSound drivers installed in the system
323 * lpDSEnumCallback [I] Address of callback function.
324 * lpContext [I] Address of user defined context passed to callback function.
328 * Failure: DSERR_INVALIDPARAM
330 HRESULT WINAPI
DirectSoundEnumerateA(
331 LPDSENUMCALLBACKA lpDSEnumCallback
,
334 struct morecontext context
;
336 if (lpDSEnumCallback
== NULL
) {
337 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
338 return DSERR_INVALIDPARAM
;
341 context
.callA
= lpDSEnumCallback
;
342 context
.data
= lpContext
;
344 return DirectSoundEnumerateW(a_to_w_callback
, &context
);
347 HRESULT
get_mmdevice(EDataFlow flow
, const GUID
*tgt
, IMMDevice
**device
)
349 IMMDeviceEnumerator
*devenum
;
350 IMMDeviceCollection
*coll
;
354 init_hr
= get_mmdevenum(&devenum
);
358 hr
= IMMDeviceEnumerator_EnumAudioEndpoints(devenum
, flow
,
359 DEVICE_STATE_ACTIVE
, &coll
);
361 WARN("EnumAudioEndpoints failed: %08lx\n", hr
);
362 release_mmdevenum(devenum
, init_hr
);
366 hr
= IMMDeviceCollection_GetCount(coll
, &count
);
368 IMMDeviceCollection_Release(coll
);
369 release_mmdevenum(devenum
, init_hr
);
370 WARN("GetCount failed: %08lx\n", hr
);
374 for(i
= 0; i
< count
; ++i
){
377 hr
= IMMDeviceCollection_Item(coll
, i
, device
);
381 hr
= get_mmdevice_guid(*device
, NULL
, &guid
);
383 IMMDevice_Release(*device
);
387 if(IsEqualGUID(&guid
, tgt
)){
388 IMMDeviceCollection_Release(coll
);
389 release_mmdevenum(devenum
, init_hr
);
393 IMMDevice_Release(*device
);
396 WARN("No device with GUID %s found!\n", wine_dbgstr_guid(tgt
));
398 IMMDeviceCollection_Release(coll
);
399 release_mmdevenum(devenum
, init_hr
);
401 return DSERR_INVALIDPARAM
;
404 static BOOL
send_device(IMMDevice
*device
, GUID
*guid
,
405 LPDSENUMCALLBACKW cb
, void *user
)
412 PropVariantInit(&pv
);
414 hr
= IMMDevice_OpenPropertyStore(device
, STGM_READ
, &ps
);
416 WARN("OpenPropertyStore failed: %08lx\n", hr
);
420 hr
= get_mmdevice_guid(device
, ps
, guid
);
422 IPropertyStore_Release(ps
);
426 hr
= IPropertyStore_GetValue(ps
,
427 (const PROPERTYKEY
*)&DEVPKEY_Device_FriendlyName
, &pv
);
429 IPropertyStore_Release(ps
);
430 WARN("GetValue(FriendlyName) failed: %08lx\n", hr
);
434 TRACE("Calling back with %s (%s)\n", wine_dbgstr_guid(guid
),
435 wine_dbgstr_w(pv
.pwszVal
));
437 keep_going
= cb(guid
, pv
.pwszVal
, wine_vxd_drv
, user
);
439 PropVariantClear(&pv
);
440 IPropertyStore_Release(ps
);
445 /* S_FALSE means the callback returned FALSE at some point
446 * S_OK means the callback always returned TRUE */
447 HRESULT
enumerate_mmdevices(EDataFlow flow
, GUID
*guids
,
448 LPDSENUMCALLBACKW cb
, void *user
)
450 IMMDeviceEnumerator
*devenum
;
451 IMMDeviceCollection
*coll
;
452 IMMDevice
*defdev
= NULL
;
457 init_hr
= get_mmdevenum(&devenum
);
461 hr
= IMMDeviceEnumerator_EnumAudioEndpoints(devenum
, flow
,
462 DEVICE_STATE_ACTIVE
, &coll
);
464 release_mmdevenum(devenum
, init_hr
);
465 WARN("EnumAudioEndpoints failed: %08lx\n", hr
);
469 hr
= IMMDeviceCollection_GetCount(coll
, &count
);
471 IMMDeviceCollection_Release(coll
);
472 release_mmdevenum(devenum
, init_hr
);
473 WARN("GetCount failed: %08lx\n", hr
);
478 IMMDeviceCollection_Release(coll
);
479 release_mmdevenum(devenum
, init_hr
);
483 TRACE("Calling back with NULL (Primary Sound Driver)\n");
484 keep_going
= cb(NULL
, L
"Primary Sound Driver", L
"", user
);
486 /* always send the default device first */
488 hr
= IMMDeviceEnumerator_GetDefaultAudioEndpoint(devenum
, flow
,
489 eMultimedia
, &defdev
);
494 keep_going
= send_device(defdev
, &guids
[0], cb
, user
);
499 for(i
= 0; keep_going
&& i
< count
; ++i
){
502 hr
= IMMDeviceCollection_Item(coll
, i
, &device
);
504 WARN("Item failed: %08lx\n", hr
);
508 if(device
!= defdev
){
509 keep_going
= send_device(device
, &guids
[n
], cb
, user
);
513 IMMDevice_Release(device
);
517 IMMDevice_Release(defdev
);
518 IMMDeviceCollection_Release(coll
);
520 release_mmdevenum(devenum
, init_hr
);
522 return keep_going
? S_OK
: S_FALSE
;
525 /***************************************************************************
526 * DirectSoundEnumerateW [DSOUND.3]
528 * Enumerate all DirectSound drivers installed in the system
531 * lpDSEnumCallback [I] Address of callback function.
532 * lpContext [I] Address of user defined context passed to callback function.
536 * Failure: DSERR_INVALIDPARAM
538 HRESULT WINAPI
DirectSoundEnumerateW(
539 LPDSENUMCALLBACKW lpDSEnumCallback
,
544 TRACE("(%p,%p)\n", lpDSEnumCallback
, lpContext
);
546 if (lpDSEnumCallback
== NULL
) {
547 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
548 return DSERR_INVALIDPARAM
;
551 setup_dsound_options();
553 hr
= enumerate_mmdevices(eRender
, DSOUND_renderer_guids
,
554 lpDSEnumCallback
, lpContext
);
555 return SUCCEEDED(hr
) ? DS_OK
: hr
;
558 /***************************************************************************
559 * DirectSoundCaptureEnumerateA [DSOUND.7]
561 * Enumerate all DirectSound drivers installed in the system.
564 * lpDSEnumCallback [I] Address of callback function.
565 * lpContext [I] Address of user defined context passed to callback function.
569 * Failure: DSERR_INVALIDPARAM
571 HRESULT WINAPI
DirectSoundCaptureEnumerateA(
572 LPDSENUMCALLBACKA lpDSEnumCallback
,
575 struct morecontext context
;
577 if (lpDSEnumCallback
== NULL
) {
578 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
579 return DSERR_INVALIDPARAM
;
582 context
.callA
= lpDSEnumCallback
;
583 context
.data
= lpContext
;
585 return DirectSoundCaptureEnumerateW(a_to_w_callback
, &context
);
588 /***************************************************************************
589 * DirectSoundCaptureEnumerateW [DSOUND.8]
591 * Enumerate all DirectSound drivers installed in the system.
594 * lpDSEnumCallback [I] Address of callback function.
595 * lpContext [I] Address of user defined context passed to callback function.
599 * Failure: DSERR_INVALIDPARAM
602 DirectSoundCaptureEnumerateW(
603 LPDSENUMCALLBACKW lpDSEnumCallback
,
608 TRACE("(%p,%p)\n", lpDSEnumCallback
, lpContext
);
610 if (lpDSEnumCallback
== NULL
) {
611 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
612 return DSERR_INVALIDPARAM
;
615 setup_dsound_options();
617 hr
= enumerate_mmdevices(eCapture
, DSOUND_capture_guids
,
618 lpDSEnumCallback
, lpContext
);
619 return SUCCEEDED(hr
) ? DS_OK
: hr
;
622 /*******************************************************************************
623 * DirectSound ClassFactory
626 typedef HRESULT (*FnCreateInstance
)(REFIID riid
, LPVOID
*ppobj
);
629 IClassFactory IClassFactory_iface
;
631 FnCreateInstance pfnCreateInstance
;
634 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
636 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
639 static HRESULT WINAPI
640 DSCF_QueryInterface(IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
642 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
643 TRACE("(%p, %s, %p)\n", This
, debugstr_guid(riid
), ppobj
);
646 if (IsEqualIID(riid
, &IID_IUnknown
) ||
647 IsEqualIID(riid
, &IID_IClassFactory
))
650 IClassFactory_AddRef(iface
);
654 return E_NOINTERFACE
;
657 static ULONG WINAPI
DSCF_AddRef(LPCLASSFACTORY iface
)
662 static ULONG WINAPI
DSCF_Release(LPCLASSFACTORY iface
)
664 /* static class, won't be freed */
668 static HRESULT WINAPI
DSCF_CreateInstance(
669 LPCLASSFACTORY iface
,
674 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
675 TRACE("(%p, %p, %s, %p)\n", This
, pOuter
, debugstr_guid(riid
), ppobj
);
678 return CLASS_E_NOAGGREGATION
;
681 WARN("invalid parameter\n");
682 return DSERR_INVALIDPARAM
;
685 return This
->pfnCreateInstance(riid
, ppobj
);
688 static HRESULT WINAPI
DSCF_LockServer(LPCLASSFACTORY iface
, BOOL dolock
)
690 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
691 FIXME("(%p, %d) stub!\n", This
, dolock
);
695 static const IClassFactoryVtbl DSCF_Vtbl
= {
703 static IClassFactoryImpl DSOUND_CF
[] = {
704 { { &DSCF_Vtbl
}, &CLSID_DirectSound
, DSOUND_Create
},
705 { { &DSCF_Vtbl
}, &CLSID_DirectSound8
, DSOUND_Create8
},
706 { { &DSCF_Vtbl
}, &CLSID_DirectSoundCapture
, DSOUND_CaptureCreate
},
707 { { &DSCF_Vtbl
}, &CLSID_DirectSoundCapture8
, DSOUND_CaptureCreate8
},
708 { { &DSCF_Vtbl
}, &CLSID_DirectSoundFullDuplex
, DSOUND_FullDuplexCreate
},
709 { { &DSCF_Vtbl
}, &CLSID_DirectSoundPrivate
, IKsPrivatePropertySetImpl_Create
},
710 { { NULL
}, NULL
, NULL
}
713 /*******************************************************************************
714 * DllGetClassObject [DSOUND.@]
715 * Retrieves class object from a DLL object
718 * Docs say returns STDAPI
721 * rclsid [I] CLSID for the class object
722 * riid [I] Reference to identifier of interface for class object
723 * ppv [O] Address of variable to receive interface pointer for riid
727 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
730 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
733 TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
736 WARN("invalid parameter\n");
742 if (!IsEqualIID(riid
, &IID_IClassFactory
) &&
743 !IsEqualIID(riid
, &IID_IUnknown
)) {
744 WARN("no interface for %s\n", debugstr_guid(riid
));
745 return E_NOINTERFACE
;
748 while (NULL
!= DSOUND_CF
[i
].rclsid
) {
749 if (IsEqualGUID(rclsid
, DSOUND_CF
[i
].rclsid
)) {
750 DSCF_AddRef(&DSOUND_CF
[i
].IClassFactory_iface
);
751 *ppv
= &DSOUND_CF
[i
];
757 WARN("(%s, %s, %p): no class found.\n", debugstr_guid(rclsid
),
758 debugstr_guid(riid
), ppv
);
759 return CLASS_E_CLASSNOTAVAILABLE
;
763 #define INIT_GUID(guid, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
764 guid.Data1 = l; guid.Data2 = w1; guid.Data3 = w2; \
765 guid.Data4[0] = b1; guid.Data4[1] = b2; guid.Data4[2] = b3; \
766 guid.Data4[3] = b4; guid.Data4[4] = b5; guid.Data4[5] = b6; \
767 guid.Data4[6] = b7; guid.Data4[7] = b8;
769 /***********************************************************************
770 * DllMain (DSOUND.init)
772 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
774 TRACE("(%p %ld %p)\n", hInstDLL
, fdwReason
, lpvReserved
);
777 case DLL_PROCESS_ATTACH
:
778 DisableThreadLibraryCalls(hInstDLL
);
779 /* Increase refcount on dsound by 1 */
780 GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
, (LPCWSTR
)hInstDLL
, &hInstDLL
);
782 case DLL_PROCESS_DETACH
:
783 if (lpvReserved
) break;
784 DeleteCriticalSection(&DSOUND_renderers_lock
);
785 DeleteCriticalSection(&DSOUND_capturers_lock
);