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"
64 #include "dsound_private.h"
66 WINE_DEFAULT_DEBUG_CHANNEL(dsound
);
68 struct list DSOUND_renderers
= LIST_INIT(DSOUND_renderers
);
69 CRITICAL_SECTION DSOUND_renderers_lock
;
70 static CRITICAL_SECTION_DEBUG DSOUND_renderers_lock_debug
=
72 0, 0, &DSOUND_renderers_lock
,
73 { &DSOUND_renderers_lock_debug
.ProcessLocksList
, &DSOUND_renderers_lock_debug
.ProcessLocksList
},
74 0, 0, { (DWORD_PTR
)(__FILE__
": DSOUND_renderers_lock") }
76 CRITICAL_SECTION DSOUND_renderers_lock
= { &DSOUND_renderers_lock_debug
, -1, 0, 0, 0, 0 };
78 struct list DSOUND_capturers
= LIST_INIT(DSOUND_capturers
);
79 CRITICAL_SECTION DSOUND_capturers_lock
;
80 static CRITICAL_SECTION_DEBUG DSOUND_capturers_lock_debug
=
82 0, 0, &DSOUND_capturers_lock
,
83 { &DSOUND_capturers_lock_debug
.ProcessLocksList
, &DSOUND_capturers_lock_debug
.ProcessLocksList
},
84 0, 0, { (DWORD_PTR
)(__FILE__
": DSOUND_capturers_lock") }
86 CRITICAL_SECTION DSOUND_capturers_lock
= { &DSOUND_capturers_lock_debug
, -1, 0, 0, 0, 0 };
88 GUID DSOUND_renderer_guids
[MAXWAVEDRIVERS
];
89 GUID DSOUND_capture_guids
[MAXWAVEDRIVERS
];
91 const WCHAR wine_vxd_drv
[] = { 'w','i','n','e','m','m','.','v','x','d', 0 };
93 /* All default settings, you most likely don't want to touch these, see wiki on UsefulRegistryKeys */
94 int ds_hel_buflen
= 32768 * 2;
95 static HINSTANCE instance
;
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: %08x\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: %08x\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: %08x\n", hr
);
216 CLSIDFromString(pv
.u
.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: %08x\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: %08x\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: %08x\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: %08x\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: %08x\n", hr
);
434 TRACE("Calling back with %s (%s)\n", wine_dbgstr_guid(guid
),
435 wine_dbgstr_w(pv
.u
.pwszVal
));
437 keep_going
= cb(guid
, pv
.u
.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 static const WCHAR primary_desc
[] = {'P','r','i','m','a','r','y',' ',
458 'S','o','u','n','d',' ','D','r','i','v','e','r',0};
459 static const WCHAR empty_drv
[] = {0};
461 init_hr
= get_mmdevenum(&devenum
);
465 hr
= IMMDeviceEnumerator_EnumAudioEndpoints(devenum
, flow
,
466 DEVICE_STATE_ACTIVE
, &coll
);
468 release_mmdevenum(devenum
, init_hr
);
469 WARN("EnumAudioEndpoints failed: %08x\n", hr
);
473 hr
= IMMDeviceCollection_GetCount(coll
, &count
);
475 IMMDeviceCollection_Release(coll
);
476 release_mmdevenum(devenum
, init_hr
);
477 WARN("GetCount failed: %08x\n", hr
);
482 IMMDeviceCollection_Release(coll
);
483 release_mmdevenum(devenum
, init_hr
);
487 TRACE("Calling back with NULL (%s)\n", wine_dbgstr_w(primary_desc
));
488 keep_going
= cb(NULL
, primary_desc
, empty_drv
, user
);
490 /* always send the default device first */
492 hr
= IMMDeviceEnumerator_GetDefaultAudioEndpoint(devenum
, flow
,
493 eMultimedia
, &defdev
);
498 keep_going
= send_device(defdev
, &guids
[0], cb
, user
);
503 for(i
= 0; keep_going
&& i
< count
; ++i
){
506 hr
= IMMDeviceCollection_Item(coll
, i
, &device
);
508 WARN("Item failed: %08x\n", hr
);
512 if(device
!= defdev
){
513 keep_going
= send_device(device
, &guids
[n
], cb
, user
);
517 IMMDevice_Release(device
);
521 IMMDevice_Release(defdev
);
522 IMMDeviceCollection_Release(coll
);
524 release_mmdevenum(devenum
, init_hr
);
526 return keep_going
? S_OK
: S_FALSE
;
529 /***************************************************************************
530 * DirectSoundEnumerateW [DSOUND.3]
532 * Enumerate all DirectSound drivers installed in the system
535 * lpDSEnumCallback [I] Address of callback function.
536 * lpContext [I] Address of user defined context passed to callback function.
540 * Failure: DSERR_INVALIDPARAM
542 HRESULT WINAPI
DirectSoundEnumerateW(
543 LPDSENUMCALLBACKW lpDSEnumCallback
,
548 TRACE("(%p,%p)\n", lpDSEnumCallback
, lpContext
);
550 if (lpDSEnumCallback
== NULL
) {
551 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
552 return DSERR_INVALIDPARAM
;
555 setup_dsound_options();
557 hr
= enumerate_mmdevices(eRender
, DSOUND_renderer_guids
,
558 lpDSEnumCallback
, lpContext
);
559 return SUCCEEDED(hr
) ? DS_OK
: hr
;
562 /***************************************************************************
563 * DirectSoundCaptureEnumerateA [DSOUND.7]
565 * Enumerate all DirectSound drivers installed in the system.
568 * lpDSEnumCallback [I] Address of callback function.
569 * lpContext [I] Address of user defined context passed to callback function.
573 * Failure: DSERR_INVALIDPARAM
575 HRESULT WINAPI
DirectSoundCaptureEnumerateA(
576 LPDSENUMCALLBACKA lpDSEnumCallback
,
579 struct morecontext context
;
581 if (lpDSEnumCallback
== NULL
) {
582 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
583 return DSERR_INVALIDPARAM
;
586 context
.callA
= lpDSEnumCallback
;
587 context
.data
= lpContext
;
589 return DirectSoundCaptureEnumerateW(a_to_w_callback
, &context
);
592 /***************************************************************************
593 * DirectSoundCaptureEnumerateW [DSOUND.8]
595 * Enumerate all DirectSound drivers installed in the system.
598 * lpDSEnumCallback [I] Address of callback function.
599 * lpContext [I] Address of user defined context passed to callback function.
603 * Failure: DSERR_INVALIDPARAM
606 DirectSoundCaptureEnumerateW(
607 LPDSENUMCALLBACKW lpDSEnumCallback
,
612 TRACE("(%p,%p)\n", lpDSEnumCallback
, lpContext
);
614 if (lpDSEnumCallback
== NULL
) {
615 WARN("invalid parameter: lpDSEnumCallback == NULL\n");
616 return DSERR_INVALIDPARAM
;
619 setup_dsound_options();
621 hr
= enumerate_mmdevices(eCapture
, DSOUND_capture_guids
,
622 lpDSEnumCallback
, lpContext
);
623 return SUCCEEDED(hr
) ? DS_OK
: hr
;
626 /*******************************************************************************
627 * DirectSound ClassFactory
630 typedef HRESULT (*FnCreateInstance
)(REFIID riid
, LPVOID
*ppobj
);
633 IClassFactory IClassFactory_iface
;
635 FnCreateInstance pfnCreateInstance
;
638 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
640 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
643 static HRESULT WINAPI
644 DSCF_QueryInterface(IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
646 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
647 TRACE("(%p, %s, %p)\n", This
, debugstr_guid(riid
), ppobj
);
650 if (IsEqualIID(riid
, &IID_IUnknown
) ||
651 IsEqualIID(riid
, &IID_IClassFactory
))
654 IClassFactory_AddRef(iface
);
658 return E_NOINTERFACE
;
661 static ULONG WINAPI
DSCF_AddRef(LPCLASSFACTORY iface
)
666 static ULONG WINAPI
DSCF_Release(LPCLASSFACTORY iface
)
668 /* static class, won't be freed */
672 static HRESULT WINAPI
DSCF_CreateInstance(
673 LPCLASSFACTORY iface
,
678 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
679 TRACE("(%p, %p, %s, %p)\n", This
, pOuter
, debugstr_guid(riid
), ppobj
);
682 return CLASS_E_NOAGGREGATION
;
685 WARN("invalid parameter\n");
686 return DSERR_INVALIDPARAM
;
689 return This
->pfnCreateInstance(riid
, ppobj
);
692 static HRESULT WINAPI
DSCF_LockServer(LPCLASSFACTORY iface
, BOOL dolock
)
694 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
695 FIXME("(%p, %d) stub!\n", This
, dolock
);
699 static const IClassFactoryVtbl DSCF_Vtbl
= {
707 static IClassFactoryImpl DSOUND_CF
[] = {
708 { { &DSCF_Vtbl
}, &CLSID_DirectSound
, DSOUND_Create
},
709 { { &DSCF_Vtbl
}, &CLSID_DirectSound8
, DSOUND_Create8
},
710 { { &DSCF_Vtbl
}, &CLSID_DirectSoundCapture
, DSOUND_CaptureCreate
},
711 { { &DSCF_Vtbl
}, &CLSID_DirectSoundCapture8
, DSOUND_CaptureCreate8
},
712 { { &DSCF_Vtbl
}, &CLSID_DirectSoundFullDuplex
, DSOUND_FullDuplexCreate
},
713 { { &DSCF_Vtbl
}, &CLSID_DirectSoundPrivate
, IKsPrivatePropertySetImpl_Create
},
714 { { NULL
}, NULL
, NULL
}
717 /*******************************************************************************
718 * DllGetClassObject [DSOUND.@]
719 * Retrieves class object from a DLL object
722 * Docs say returns STDAPI
725 * rclsid [I] CLSID for the class object
726 * riid [I] Reference to identifier of interface for class object
727 * ppv [O] Address of variable to receive interface pointer for riid
731 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
734 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
737 TRACE("(%s, %s, %p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
740 WARN("invalid parameter\n");
746 if (!IsEqualIID(riid
, &IID_IClassFactory
) &&
747 !IsEqualIID(riid
, &IID_IUnknown
)) {
748 WARN("no interface for %s\n", debugstr_guid(riid
));
749 return E_NOINTERFACE
;
752 while (NULL
!= DSOUND_CF
[i
].rclsid
) {
753 if (IsEqualGUID(rclsid
, DSOUND_CF
[i
].rclsid
)) {
754 DSCF_AddRef(&DSOUND_CF
[i
].IClassFactory_iface
);
755 *ppv
= &DSOUND_CF
[i
];
761 WARN("(%s, %s, %p): no class found.\n", debugstr_guid(rclsid
),
762 debugstr_guid(riid
), ppv
);
763 return CLASS_E_CLASSNOTAVAILABLE
;
767 /*******************************************************************************
768 * DllCanUnloadNow [DSOUND.4]
769 * Determines whether the DLL is in use.
772 * Can unload now: S_OK
773 * Cannot unload now (the DLL is still active): S_FALSE
775 HRESULT WINAPI
DllCanUnloadNow(void)
780 #define INIT_GUID(guid, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
781 guid.Data1 = l; guid.Data2 = w1; guid.Data3 = w2; \
782 guid.Data4[0] = b1; guid.Data4[1] = b2; guid.Data4[2] = b3; \
783 guid.Data4[3] = b4; guid.Data4[4] = b5; guid.Data4[5] = b6; \
784 guid.Data4[6] = b7; guid.Data4[7] = b8;
786 /***********************************************************************
787 * DllMain (DSOUND.init)
789 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
791 TRACE("(%p %d %p)\n", hInstDLL
, fdwReason
, lpvReserved
);
794 case DLL_PROCESS_ATTACH
:
796 DisableThreadLibraryCalls(hInstDLL
);
797 /* Increase refcount on dsound by 1 */
798 GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
, (LPCWSTR
)hInstDLL
, &hInstDLL
);
800 case DLL_PROCESS_DETACH
:
801 if (lpvReserved
) break;
802 DeleteCriticalSection(&DSOUND_renderers_lock
);
803 DeleteCriticalSection(&DSOUND_capturers_lock
);
809 /***********************************************************************
810 * DllRegisterServer (DSOUND.@)
812 HRESULT WINAPI
DllRegisterServer(void)
814 return __wine_register_resources( instance
);
817 /***********************************************************************
818 * DllUnregisterServer (DSOUND.@)
820 HRESULT WINAPI
DllUnregisterServer(void)
822 return __wine_unregister_resources( instance
);