mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-22 12:22:23 +00:00
27 lines
278 B
C++
27 lines
278 B
C++
|
|
// snddma_null.c
|
|
// all other sound mixing is portable
|
|
|
|
#include "../client/client.h"
|
|
|
|
qboolean SNDDMA_Init(void)
|
|
{
|
|
return qfalse;
|
|
}
|
|
|
|
int SNDDMA_GetDMAPos(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void SNDDMA_Shutdown(void)
|
|
{
|
|
}
|
|
|
|
void SNDDMA_BeginPainting (void)
|
|
{
|
|
}
|
|
|
|
void SNDDMA_Submit(void)
|
|
{
|
|
}
|