From 3d91366a30b177169109fada3cbba4fce18e53b6 Mon Sep 17 00:00:00 2001 From: Spoike Date: Thu, 9 Dec 2004 23:37:29 +0000 Subject: [PATCH] Just a stub for now. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@599 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/snd_sdl.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 engine/client/snd_sdl.c diff --git a/engine/client/snd_sdl.c b/engine/client/snd_sdl.c new file mode 100644 index 000000000..30271089a --- /dev/null +++ b/engine/client/snd_sdl.c @@ -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) +{ +}