rnd-20031207-1-src
[rocksndiamonds.git] / src / main.h
index 0ed5442c24d24f33728a0b7b4cb8b4e31f44ef37..32e7e3a779968528d7e5fb443dde5425e402f443 100644 (file)
 #define PROGRAM_VERSION_MAJOR  3
 #define PROGRAM_VERSION_MINOR  0
 #define PROGRAM_VERSION_PATCH  8
-#define PROGRAM_VERSION_BUILD  0
+#define PROGRAM_VERSION_BUILD  1
 
 #define PROGRAM_TITLE_STRING   "Rocks'n'Diamonds"
 #define PROGRAM_AUTHOR_STRING  "Holger Schemel"
@@ -1217,6 +1217,7 @@ struct PlayerInfo
   int anim_delay_counter;
   int post_delay_counter;
 
+  int action_waiting;
   int special_action_bored;
   int special_action_sleeping;
 
@@ -1545,7 +1546,12 @@ struct MusicPrefixInfo
 
 struct MusicFileInfo
 {
-  char *context;
+  char *basename;
+
+  char *title_header;
+  char *artist_header;
+  char *album_header;
+  char *year_header;
 
   char *title;
   char *artist;
@@ -1554,6 +1560,8 @@ struct MusicFileInfo
 
   int music;
 
+  boolean is_sound;
+
   struct MusicFileInfo *next;
 };