vrshoot

view src/audio/openal.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line source
1 #ifndef OPENAL_H_
2 #define OPENAL_H_
4 #ifndef __APPLE__
5 #include <AL/al.h>
6 #include <AL/alc.h>
7 #else
8 #include <OpenAL/al.h>
9 #include <OpenAL/alc.h>
10 #endif
12 #endif /* OPENAL_H_ */