music.h
changeset 4120 b21fda0c260a
child 4199 08c830893ab2
equal deleted inserted replaced
4119:afee2d7d247c 4120:b21fda0c260a
       
     1 /* $Id */
       
     2 
       
     3 #ifndef MUSIC_H
       
     4 #define MUSIC_H
       
     5 
       
     6 #define NUM_SONGS_PLAYLIST 33
       
     7 #define NUM_SONGS_AVAILABLE 22
       
     8 
       
     9 typedef struct SongSpecs {
       
    10 	char filename[256];
       
    11 	char song_name[64];
       
    12 } SongSpecs;
       
    13 
       
    14 extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];
       
    15 
       
    16 #endif //MUSIC_H