DEADSOFTWARE

b47ba0c3473950d7577f650237ccdadcd941d1eb
[flatwaifu.git] / src / stubsnd / sound.c
1 #include "glob.h"
2 #include "sound.h"
3 #include "music.h"
5 /* Music */
7 const cfg_t *MUS_args (void) {
8 return NULL;
9 }
11 const cfg_t *MUS_conf (void) {
12 return NULL;
13 }
15 const menu_t *MUS_menu (void) {
16 return NULL;
17 }
19 void MUS_init (void) {
21 }
23 void MUS_done (void) {
25 }
27 void MUS_start (int time) {
29 }
31 void MUS_stop (void) {
33 }
35 void MUS_volume (int v) {
37 }
39 void MUS_load (char n[8]) {
41 }
43 void MUS_free (void) {
45 }
47 void MUS_update (void) {
49 }
51 /* Sound */
53 const cfg_t *S_args (void) {
54 return NULL;
55 }
57 const cfg_t *S_conf (void) {
58 return NULL;
59 }
61 const menu_t *S_menu (void) {
62 return NULL;
63 }
65 snd_t *S_get (int id) {
66 return NULL;
67 }
69 snd_t *S_load (const char name[8]) {
70 return NULL;
71 }
73 void S_free (snd_t *s) {
75 }
77 void S_init (void) {
79 }
81 void S_done (void) {
83 }
85 short S_play (snd_t *s, short c, short v) {
86 return 0;
87 }
89 void S_stop (short c) {
91 }
93 void S_volume (int v) {
95 }
97 void S_wait (void) {
99 }