]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - snd_null.c
particle geometry can now be rotated for more variety, and can spin too
[xonotic/darkplaces.git] / snd_null.c
index 1ed1cc81bd0570066c886f2b10bddf02f899c17a..d98cf4b5229d3b4c21c305228a1d0071f0c16f66 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)
 {
 }
@@ -62,6 +67,11 @@ int S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float f
        return -1;
 }
 
+int S_StartSound_StartPosition (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation, float startposition)
+{
+       return -1;
+}
+
 void S_StopChannel (unsigned int channel_ind, qboolean lockmutex)
 {
 }
@@ -83,7 +93,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 +141,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)
+{
+}