Updated OpenAL to version 1.16.0

This commit is contained in:
fysx
2015-11-29 15:27:32 +01:00
parent 8308a524bc
commit ec5f068b19
149 changed files with 16 additions and 18 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef AL_BOOL_H
#define AL_BOOL_H
#ifdef HAVE_STDBOOL_H
#include <stdbool.h>
#endif
#ifndef bool
#ifdef HAVE_C99_BOOL
#define bool _Bool
#else
#define bool int
#endif
#define false 0
#define true 1
#endif
#endif /* AL_BOOL_H */