0ad/source/lib/external_libraries/openal.h
Ykkrosh 7a4dd7b473 Set svn:eol-style=native
This was SVN commit r6828.
2009-04-18 16:14:48 +00:00

27 lines
588 B
C

/**
* =========================================================================
* 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
#if OS_MACOSX
# include <OpenAL/al.h>
# include <OpenAL/alc.h>
#else
# include <AL/al.h>
# include <AL/alc.h>
#endif
#if MSC_VERSION
# pragma comment(lib, "openal32.lib")
#endif
#endif // #ifndef INCLUDED_OPENAL