mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
28 lines
308 B
C
28 lines
308 B
C
|
|
// snddma_null.c
|
|
// all other sound mixing is portable
|
|
|
|
#include "../client/client.h"
|
|
#include "../client/snd_loc.h"
|
|
|
|
qboolean SNDDMA_Init(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int SNDDMA_GetDMAPos(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void SNDDMA_Shutdown(void)
|
|
{
|
|
}
|
|
|
|
void SNDDMA_BeginPainting (void)
|
|
{
|
|
}
|
|
|
|
void SNDDMA_Submit(void)
|
|
{
|
|
}
|