git-svn-id: http://bladebattles.com/kurok/SVN@11 20cd92bb-ff49-0410-b73e-96a06e42c3b9
[kurok.git] / snd_null.c
blob6dea5cf8d99bc01a5c2577da5b232bb926f1fdf3
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // snd_null.c -- include this instead of all the other snd_* files to have
21 // no sound code whatsoever
23 #include "quakedef.h"
25 cvar_t bgmvolume = {"bgmvolume", "1", true};
26 cvar_t volume = {"volume", "0.7", true};
29 void S_Init (void)
33 void S_AmbientOff (void)
37 void S_AmbientOn (void)
41 void S_Shutdown (void)
45 void S_TouchSound (char *sample)
49 void S_ClearBuffer (void)
53 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation)
57 void S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation)
61 void S_StopSound (int entnum, int entchannel)
65 sfx_t *S_PrecacheSound (char *sample)
67 return NULL;
70 void S_ClearPrecache (void)
74 void S_Update (vec3_t origin, vec3_t v_forward, vec3_t v_right, vec3_t v_up)
78 void S_StopAllSounds (qboolean clear)
82 void S_BeginPrecaching (void)
86 void S_EndPrecaching (void)
90 void S_ExtraUpdate (void)
94 void S_LocalSound (char *s)