1
0
forked from 0ad/0ad
0ad/source/lib/oal.cpp
2004-07-31 15:51:49 +00:00

25 lines
259 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;
}