diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-08-13 13:54:09 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-08-13 13:54:09 +0000 |
| commit | 5b67651831ad9b160b41990288c938c7a05c1db1 (patch) | |
| tree | 6380e378eae351d40abe85b66aed40f5c88f2951 /src/base/fake_audio.c | |
| parent | 54d61c622ba721b4ea57852e0ba6c87acfa66a2b (diff) | |
- upravene indexovanie v index.c a space.c ktore indexovanie pouziva
git-svn-id: http://opensvn.csie.org/tuxanci_ng@194 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/base/fake_audio.c')
| -rw-r--r-- | src/base/fake_audio.c | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/src/base/fake_audio.c b/src/base/fake_audio.c deleted file mode 100644 index 2149c86..0000000 --- a/src/base/fake_audio.c +++ /dev/null @@ -1,89 +0,0 @@ - -#include "base/main.h" -#include "base/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() -{ -} |