2006-07-31 11:52:39 +00:00
|
|
|
/* $Id$ */
|
2006-07-07 02:44:51 +00:00
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file music.h Base for the music handling. */
|
2007-03-03 04:04:22 +00:00
|
|
|
|
2006-07-07 02:44:51 +00:00
|
|
|
#ifndef MUSIC_H
|
|
|
|
#define MUSIC_H
|
|
|
|
|
|
|
|
#define NUM_SONGS_PLAYLIST 33
|
|
|
|
#define NUM_SONGS_AVAILABLE 22
|
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
struct SongSpecs {
|
2008-04-04 00:06:51 +00:00
|
|
|
char filename[MAX_PATH];
|
2006-07-07 02:44:51 +00:00
|
|
|
char song_name[64];
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-07-07 02:44:51 +00:00
|
|
|
|
2009-01-03 17:09:31 +00:00
|
|
|
extern const SongSpecs _origin_songs_specs[];
|
2006-07-07 02:44:51 +00:00
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
#endif /* MUSIC_H */
|