1
0
Fork 0
forked from fte/fteqw
fteqw/engine/client/cd_null.c
Mark Olsen 96dd5860cd Added newline at end of file
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1616 fc73d0e0-1445-4013-8a0c-d673dee63da5
2005-11-29 11:28:32 +00:00

39 lines
452 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)
{
}