]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_null.c
support DP_SV_BOUNCEFACTOR and .float gravity for ODE objects (gravity however is...
[xonotic/darkplaces.git] / snd_null.c
index 1ed1cc81bd0570066c886f2b10bddf02f899c17a..0d7276eab7797ca231c0e3505cc36fb9e6390fb6 100755 (executable)
@@ -49,10 +49,15 @@ void S_Shutdown (void)
 {
 }
 
-void S_ServerSounds (char serversound [][MAX_QPATH], unsigned int numsounds)
+void S_ClearUsed (void)
 {
 }
 
+void S_PurgeUnused (void)
+{
+}
+
+
 void S_StaticSound (sfx_t *sfx, vec3_t origin, float fvol, float attenuation)
 {
 }
@@ -83,7 +88,7 @@ void S_SetChannelVolume (unsigned int ch_ind, float fvol)
 {
 }
 
-sfx_t *S_PrecacheSound (const char *sample, qboolean complain, qboolean lock)
+sfx_t *S_PrecacheSound (const char *sample, qboolean complain, qboolean serversound)
 {
        return NULL;
 }
@@ -131,3 +136,17 @@ int S_GetSoundRate(void)
 {
        return 0;
 }
+
+int S_GetSoundChannels(void)
+{
+       return 0;
+}
+
+float S_GetChannelPosition (unsigned int ch_ind)
+{
+       return -1;
+}
+
+void SndSys_SendKeyEvents(void)
+{
+}