AL_Include.h

00001 //internal use: includes the OpenAL headers for the current platform
00002 //Luke Lenhart, 2008
00003 //See /docs/License.txt for details on how this code may be used.
00004 
00005 #include "../base/Setup.h"
00006 
00007 #ifdef MPMA_COMPILE_AUDIO
00008 
00009 #if defined(_WIN32) || defined(_WIN64) //windows - msvc
00010 
00011     //For whatever reason, OpenAL sdk on windows by default does NOT have the headers under the AL/ directory.
00012     #include <al.h>
00013     #include <alc.h>
00014 
00015 #else //linux
00016 
00017     #include <AL/al.h>
00018     #include <AL/alc.h>
00019 
00020 #endif
00021 
00022 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends