summaryrefslogtreecommitdiff
path: root/src/fake_audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fake_audio.c')
-rw-r--r--src/fake_audio.c89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/fake_audio.c b/src/fake_audio.c
new file mode 100644
index 0000000..7bccbde
--- /dev/null
+++ b/src/fake_audio.c
@@ -0,0 +1,89 @@
+
+#include "main.h"
+#include "fake_audio.h"
+
+bool_t isAudioInicialized()
+{
+ return TRUE;
+}
+
+void initAudio()
+{
+}
+
+void quitAudio()
+{
+}
+
+bool_t isSoundInicialized()
+{
+ return TRUE;
+}
+
+void initSound()
+{
+}
+
+void addSound(char *file, char *name, int group)
+{
+}
+
+void playSound(char *name, int group)
+{
+}
+
+void setSoundActive(bool_t n)
+{
+}
+
+bool_t isSoundActive()
+{
+ return FALSE;
+}
+
+void quitSound()
+{
+}
+
+bool_t isMusicInicialized()
+{
+ return FALSE;
+}
+
+void initMusic()
+{
+}
+
+void addMusic(char *file, char *name, int group)
+{
+}
+
+void stopMusic()
+{
+}
+
+void playMusic(char *name, int group)
+{
+}
+
+void setMusicActive(bool_t n)
+{
+}
+
+bool_t isMusicActive()
+{
+ return FALSE;
+}
+
+char* getCurrentMusic()
+{
+ return "no_sound";
+}
+
+void delAllMusicInGroup(int group)
+{
+}
+
+void quitMusic()
+{
+}