/** * ========================================================================= * File : openal.h * Project : 0 A.D. * Description : bring in OpenAL header+library, with compatibility fixes * ========================================================================= */ // license: GPL; see lib/license.txt #ifndef INCLUDED_OPENAL #define INCLUDED_OPENAL #ifdef __APPLE__ # include # include #else # include # include #endif #if MSC_VERSION # pragma comment(lib, "openal32.lib") #endif #endif // #ifndef INCLUDED_OPENAL