diff options
author | Chris Robinson <[email protected]> | 2018-11-18 18:04:27 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-18 18:04:27 -0800 |
commit | b10e7d08c34bc6d46aaf61ef2a0183e7841b75f3 (patch) | |
tree | 52ec62d347eab96dc64beef40fcbfa6bdf7db905 /OpenAL32/Include | |
parent | ef7995cfd086dd1b32d85bf214b66da37e6550c5 (diff) |
Use a std::thread for the event thread
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index e31d0146..a81d3f3d 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -803,7 +803,8 @@ inline void LockFilterList(ALCdevice *device) { almtx_lock(&device->FilterLock); inline void UnlockFilterList(ALCdevice *device) { almtx_unlock(&device->FilterLock); } -int EventThread(void *arg); +void StartEventThrd(ALCcontext *ctx); +void StopEventThrd(ALCcontext *ctx); char *alstrdup(const char *str); |