For the bsd port.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@948 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-04-17 03:15:38 +00:00
parent 1c47b03601
commit 983c808035
1 changed files with 39 additions and 0 deletions

39
engine/client/cd_null.c Normal file
View File

@ -0,0 +1,39 @@
#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)
{
}