983c808035
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@948 fc73d0e0-1445-4013-8a0c-d673dee63da5
39 lines
No EOL
451 B
C
39 lines
No EOL
451 B
C
#include "quakedef.h"
|
|
|
|
#ifdef _WIN32
|
|
//not really needed, but nice none-the-less.
|
|
#include "winquake.h"
|
|
LONG CDAudio_MessageHandler(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
return 1;
|
|
}
|
|
#endif
|
|
|
|
void CDAudio_Shutdown(void)
|
|
{
|
|
}
|
|
|
|
void CDAudio_Update(void)
|
|
{
|
|
}
|
|
|
|
int CDAudio_Init(void)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
void CDAudio_Play(int track, qboolean looping)
|
|
{
|
|
}
|
|
|
|
void CDAudio_Stop(void)
|
|
{
|
|
}
|
|
|
|
void CDAudio_Pause(void)
|
|
{
|
|
}
|
|
|
|
void CDAudio_Resume(void)
|
|
{
|
|
} |