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 /Alc/backends/base.c | |
parent | dae5faedb05c3a889a0bb1f957e610c8af85a155 (diff) |
Make a couple functions inline
Diffstat (limited to 'Alc/backends/base.c')
-rw-r--r-- | Alc/backends/base.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Alc/backends/base.c b/Alc/backends/base.c index 5f568d8e..a451fee9 100644 --- a/Alc/backends/base.c +++ b/Alc/backends/base.c @@ -10,6 +10,8 @@ extern inline ALuint64 GetDeviceClockTime(ALCdevice *device); +extern inline void ALCdevice_Lock(ALCdevice *device); +extern inline void ALCdevice_Unlock(ALCdevice *device); /* Base ALCbackend method implementations. */ void ALCbackend_Construct(ALCbackend *self, ALCdevice *device) |