DEADSOFTWARE

58435f177f03fa4a7bc348a74eeb24a192c3e52a
[flatwaifu.git] / src / stubsnd / sound.c
1 #include "glob.h"
2 #include "sound.h"
3 #include "music.h"
5 short snd_vol;
7 short mus_vol;
8 char music_random;
9 int music_time;
10 int music_fade;
12 /* Music */
14 void S_initmusic (void) {
16 }
18 void S_donemusic (void) {
20 }
22 void S_startmusic (int time) {
24 }
26 void S_stopmusic (void) {
28 }
30 void S_volumemusic (int v) {
32 }
34 void F_loadmus (char n[8]) {
36 }
38 void F_freemus (void) {
40 }
42 void S_updatemusic (void) {
44 }
46 /* Sound */
48 snd_t *S_get (int id) {
49 return NULL;
50 }
52 snd_t *S_load (const char name[8]) {
53 return NULL;
54 }
56 void S_free (snd_t *s) {
58 }
60 void S_init (void) {
62 }
64 void S_done (void) {
66 }
68 short S_play (snd_t *s, short c, short v) {
69 return 0;
70 }
72 void S_stop (short c) {
74 }
76 void S_volume (int v) {
78 }
80 void S_wait (void) {
82 }