threads.h 311 B

1234567891011121314
  1. #ifndef AL_THREADS_H
  2. #define AL_THREADS_H
  3. #include "alMain.h"
  4. struct althread_info;
  5. typedef struct althread_info* althread_t;
  6. ALboolean StartThread(althread_t *out, ALuint (*func)(ALvoid*), ALvoid *ptr);
  7. ALuint StopThread(althread_t thread);
  8. void SetThreadName(const char *name);
  9. #endif /* AL_THREADS_H */