Files
megasource/libs/openal-soft-1.15.1-29e0af5ef052/OpenAL32/Include/threads.h
T
rude c3a7263a78 Add OpenAL-soft 29e0af5ef052a3602f9b7935d6002c6d2ae5e8cb.
Needed because of race condition fix in mmdevapi backend.
2014-02-13 20:32:37 +01:00

15 lines
311 B
C

#ifndef AL_THREADS_H
#define AL_THREADS_H
#include "alMain.h"
struct althread_info;
typedef struct althread_info* althread_t;
ALboolean StartThread(althread_t *out, ALuint (*func)(ALvoid*), ALvoid *ptr);
ALuint StopThread(althread_t thread);
void SetThreadName(const char *name);
#endif /* AL_THREADS_H */