mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-14 14:41:41 +00:00
32 lines
250 B
C
32 lines
250 B
C
|
#include "../client/client.h"
|
||
|
|
||
|
void CDAudio_Play(int track, qboolean looping)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void CDAudio_Stop(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void CDAudio_Resume(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void CDAudio_Update(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
int CDAudio_Init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
void CDAudio_Shutdown(void)
|
||
|
{
|
||
|
}
|