diff options
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -1341,17 +1341,6 @@ static ALCdevice *VerifyDevice(ALCdevice *device) } -ALCvoid LockDevice(ALCdevice *device) -{ - EnterCriticalSection(&device->Mutex); -} - -ALCvoid UnlockDevice(ALCdevice *device) -{ - LeaveCriticalSection(&device->Mutex); -} - - /* InitContext * * Initializes context variables @@ -1525,16 +1514,6 @@ static ALCcontext *VerifyContext(ALCcontext *context) } -ALCvoid LockContext(ALCcontext *context) -{ - EnterCriticalSection(&context->Device->Mutex); -} - -ALCvoid UnlockContext(ALCcontext *context) -{ - LeaveCriticalSection(&context->Device->Mutex); -} - /* GetContextRef * * Returns the currently active context, and adds a reference without locking |