alError.h 249 B

12345678910111213141516171819
  1. #ifndef _AL_ERROR_H_
  2. #define _AL_ERROR_H_
  3. #include "AL/al.h"
  4. #include "AL/alc.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. extern ALboolean TrapALError;
  9. ALvoid alSetError(ALCcontext *Context, ALenum errorCode);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif