Commit 4c4821e3 authored by Jan Zerebecki's avatar Jan Zerebecki Committed by Alexandre Julliard

dsound: Conform critical section DebugInfo names.

parent ea363dc6
...@@ -1180,7 +1180,7 @@ HRESULT IDirectSoundBufferImpl_Create( ...@@ -1180,7 +1180,7 @@ HRESULT IDirectSoundBufferImpl_Create(
DSOUND_RecalcVolPan(&(dsb->volpan)); DSOUND_RecalcVolPan(&(dsb->volpan));
InitializeCriticalSection(&(dsb->lock)); InitializeCriticalSection(&(dsb->lock));
dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)"DSOUNDBUFFER_lock"; dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": IDirectSoundBufferImpl.lock");
/* register buffer if not primary */ /* register buffer if not primary */
if (!(dsbd->dwFlags & DSBCAPS_PRIMARYBUFFER)) { if (!(dsbd->dwFlags & DSBCAPS_PRIMARYBUFFER)) {
...@@ -1319,7 +1319,7 @@ HRESULT IDirectSoundBufferImpl_Duplicate( ...@@ -1319,7 +1319,7 @@ HRESULT IDirectSoundBufferImpl_Duplicate(
CopyMemory(dsb->pwfx, pdsb->pwfx, size); CopyMemory(dsb->pwfx, pdsb->pwfx, size);
InitializeCriticalSection(&(dsb->lock)); InitializeCriticalSection(&(dsb->lock));
dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)"DSOUNDBUFFER_lock"; dsb->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": IDirectSoundBufferImpl.lock");
/* register buffer */ /* register buffer */
hres = DirectSoundDevice_AddBuffer(device, dsb); hres = DirectSoundDevice_AddBuffer(device, dsb);
......
...@@ -1665,7 +1665,7 @@ static HRESULT DirectSoundCaptureDevice_Create( ...@@ -1665,7 +1665,7 @@ static HRESULT DirectSoundCaptureDevice_Create(
device->state = STATE_STOPPED; device->state = STATE_STOPPED;
InitializeCriticalSection( &(device->lock) ); InitializeCriticalSection( &(device->lock) );
device->lock.DebugInfo->Spare[0] = (DWORD_PTR)"DSCAPTURE_lock"; device->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": DirectSoundCaptureDevice.lock");
*ppDevice = device; *ppDevice = device;
......
...@@ -1224,7 +1224,7 @@ static HRESULT DirectSoundDevice_Create(DirectSoundDevice ** ppDevice) ...@@ -1224,7 +1224,7 @@ static HRESULT DirectSoundDevice_Create(DirectSoundDevice ** ppDevice)
device->pwfx->cbSize = 0; device->pwfx->cbSize = 0;
InitializeCriticalSection(&(device->mixlock)); InitializeCriticalSection(&(device->mixlock));
device->mixlock.DebugInfo->Spare[0] = (DWORD_PTR)"DSOUND_mixlock"; device->mixlock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": DirectSoundDevice.mixlock");
RtlInitializeResource(&(device->buffer_list_lock)); RtlInitializeResource(&(device->buffer_list_lock));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment