00001 /* $Id: music.h 9051 2007-03-07 12:11:48Z 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[256]; 00013 char song_name[64]; 00014 }; 00015 00016 extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE]; 00017 00018 #endif //MUSIC_H