0ad/source/lib/oal.cpp
janwas 777abc8edb helper functions/header for openal
This was SVN commit r828.
2004-07-28 11:34:40 +00:00

23 lines
No EOL
257 B
C++
Executable file

#include "precompiled.h"
#include "lib.h"
#include "oal.h"
#ifdef _MSC_VER
#pragma comment(lib, "openal32.lib")
#pragma comment(lib, "alut.lib")
#endif
int oal_Init()
{
ONCE(alutInit(0, 0));
return 0;
}
int oal_Shutdown()
{
alutExit();
return 0;
}