00001 /* $Id: music.h 14810 2009-01-03 17:09:31Z rubidium $ */ 00002 00005 #ifndef MUSIC_H 00006 #define MUSIC_H 00007 00008 #define NUM_SONGS_PLAYLIST 33 00009 #define NUM_SONGS_AVAILABLE 22 00010 00011 struct SongSpecs { 00012 char filename[MAX_PATH]; 00013 char song_name[64]; 00014 }; 00015 00016 extern const SongSpecs _origin_songs_specs[]; 00017 00018 #endif //MUSIC_H