diff options
author | Chris Robinson <[email protected]> | 2013-11-04 23:34:18 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-11-04 23:34:18 -0800 |
commit | 10dbb1bc9b5d5040cb363c5a0dccb8ad273052b9 (patch) | |
tree | 4a83d72f77bd1a1cc4a71bc354af2ca0f7a30771 /OpenAL32/Include | |
parent | ca83629e4e9ea322716d8e3115b1ee61204212ad (diff) |
Remove the Lock and Unlock methods from BackendFuncs
All backends that still use the old interface use the default locking methods,
which is also used by the ALCbackend base.
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2af21017..095a4a2c 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -201,9 +201,6 @@ typedef struct { ALCenum (*CaptureSamples)(ALCdevice*, void*, ALCuint); ALCuint (*AvailableSamples)(ALCdevice*); - void (*Lock)(ALCdevice*); - void (*Unlock)(ALCdevice*); - ALint64 (*GetLatency)(ALCdevice*); } BackendFuncs; @@ -475,8 +472,6 @@ void ALCcontext_DecRef(ALCcontext *context); void AppendAllDevicesList(const ALCchar *name); void AppendCaptureDeviceList(const ALCchar *name); -void ALCdevice_LockDefault(ALCdevice *device); -void ALCdevice_UnlockDefault(ALCdevice *device); ALint64 ALCdevice_GetLatencyDefault(ALCdevice *device); void ALCdevice_Lock(ALCdevice *device); |