diff options
author | Chris Robinson <[email protected]> | 2018-01-12 02:37:48 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-01-12 02:37:48 -0800 |
commit | e634564b26091fc315fdc592f4f87fdff86be729 (patch) | |
tree | 539c03ddb93689fe9fad12a68e20284d7309ff93 /OpenAL32/Include | |
parent | dae5faedb05c3a889a0bb1f957e610c8af85a155 (diff) |
Make a couple functions inline
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 76624a66..2fe7f71f 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -738,20 +738,16 @@ struct ALCcontext_struct { ALCcontext *GetContextRef(void); -void ALCcontext_IncRef(ALCcontext *context); void ALCcontext_DecRef(ALCcontext *context); +void ALCcontext_DeferUpdates(ALCcontext *context); +void ALCcontext_ProcessUpdates(ALCcontext *context); + void AllocateVoices(ALCcontext *context, ALsizei num_voices, ALsizei old_sends); void AppendAllDevicesList(const ALCchar *name); void AppendCaptureDeviceList(const ALCchar *name); -void ALCdevice_Lock(ALCdevice *device); -void ALCdevice_Unlock(ALCdevice *device); - -void ALCcontext_DeferUpdates(ALCcontext *context); -void ALCcontext_ProcessUpdates(ALCcontext *context); - extern ALint RTPrioLevel; void SetRTPriority(void); |