DEADSOFTWARE

sound: move sound/music configuration to sound driver
[flatwaifu.git] / src / music.h
1 #ifndef MUSIC_H_INCLUDED
2 #define MUSIC_H_INCLUDED
4 #include "menu.h"
5 #include "system.h"
7 const cfg_t *MUS_args (void);
8 const cfg_t *MUS_conf (void);
9 const menu_t *MUS_menu (void);
11 void MUS_init (void);
12 void MUS_done (void);
13 void MUS_start (int time);
14 void MUS_stop (void);
15 void MUS_volume (int v);
16 void MUS_load (char n[8]);
17 void MUS_free (void);
18 void MUS_update (void);
20 #endif /* MUSIC_H_INCLUDED */