initial commit
[liquidmodel] / src / music.h
1 #ifndef MUSIC_H_
2 #define MUSIC_H_
3
4 int init_music(void);
5 void destroy_music(void);
6
7 void play_music(void);
8 void stop_music(void);
9 void seek_music(long tm);
10
11 void set_music_volume(float vol);
12
13 #endif  /* MUSIC_H_ */