Just a stub for now.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@599 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-12-09 23:37:29 +00:00
parent f7834e9c24
commit 3d91366a30
1 changed files with 33 additions and 0 deletions

33
engine/client/snd_sdl.c Normal file
View File

@ -0,0 +1,33 @@
#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)
{
}