From 5bd63ff03d324f772875611325ee10c8a8df1c3c Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 7 Feb 2017 19:32:49 -0800 Subject: Remove a couple context lock wrapper functions --- OpenAL32/Include/alMain.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'OpenAL32/Include') diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2ef43ce7..2573c836 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -822,12 +822,6 @@ void ALCdevice_Unlock(ALCdevice *device); void ALCcontext_DeferUpdates(ALCcontext *context, ALenum type); void ALCcontext_ProcessUpdates(ALCcontext *context); -inline void LockContext(ALCcontext *context) -{ ALCdevice_Lock(context->Device); } - -inline void UnlockContext(ALCcontext *context) -{ ALCdevice_Unlock(context->Device); } - enum { DeferOff = AL_FALSE, DeferAll, -- cgit v1.2.3