summaryrefslogtreecommitdiff
path: root/src/strife/s_sound.h
diff options
context:
space:
mode:
authorJames Haley2010-09-11 18:06:16 +0000
committerJames Haley2010-09-11 18:06:16 +0000
commitb6938d1533d624a5815660c40aeda9125090f55e (patch)
tree515623adb7f5156198047d5a926fd8a4ec551924 /src/strife/s_sound.h
parented820d4af6710f94a5674cebcca855686b2ad57a (diff)
downloadchocolate-doom-b6938d1533d624a5815660c40aeda9125090f55e.tar.gz
chocolate-doom-b6938d1533d624a5815660c40aeda9125090f55e.tar.bz2
chocolate-doom-b6938d1533d624a5815660c40aeda9125090f55e.zip
Voice API implemented.
Subversion-branch: /branches/strife-branch Subversion-revision: 2063
Diffstat (limited to 'src/strife/s_sound.h')
-rw-r--r--src/strife/s_sound.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/strife/s_sound.h b/src/strife/s_sound.h
index 7bb0a605..1cb70fa0 100644
--- a/src/strife/s_sound.h
+++ b/src/strife/s_sound.h
@@ -61,6 +61,9 @@ void S_Start(void);
void S_StartSound(void *origin, int sound_id);
+// haleyjd 09/11/10: [STRIFE] Start a voice.
+void I_StartVoice(const char *lumpname);
+
// Stop sound for thing at <origin>
void S_StopSound(mobj_t *origin);
@@ -90,6 +93,7 @@ void S_UpdateSounds(mobj_t *listener);
void S_SetMusicVolume(int volume);
void S_SetSfxVolume(int volume);
+void S_SetVoiceVolume(int volume); // haleyjd 09/11/10: [STRIFE]
extern int snd_channels;