fteqw/engine/client/snd_sdl.c
Spoike 3d91366a30 Just a stub for now.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@599 fc73d0e0-1445-4013-8a0c-d673dee63da5
2004-12-09 23:37:29 +00:00

33 lines
463 B
C

#include "quakedef.h"
soundcardinfo_t *sndcardinfo;
int snd_firsttime = 0;
int aimedforguid;
void SNDDMA_Submit(soundcardinfo_t *sc)
{
}
void SNDDMA_Shutdown(soundcardinfo_t *sc)
{
}
int SNDDMA_GetDMAPos(soundcardinfo_t *sc)
{
return 0;
}
void S_UpdateCapture(void) //any ideas how to get microphone input?
{
}
int SNDDMA_Init(soundcardinfo_t *sc)
{
Con_Printf("SDL has no sound code\n");
return 0;
}
void SNDDMA_SetUnderWater(qboolean underwater)
{
}