rnd-20100613-1-src
[rocksndiamonds.git] / src / tape.h
index cafa235d41170fc46ad4191df5a0509510b17172..396d298cb12487b2c76c5bc74f94df7a1ea6399f 100644 (file)
 #define VIDEO_DISPLAY_SYMBOL_ONLY      -2
 
 
+struct TapeButtonInfo
+{
+  struct Rect eject;
+  struct Rect stop;
+  struct Rect pause;
+  struct Rect record;
+  struct Rect play;
+};
+
 struct TapeInfo
 {
   int file_version;    /* file format version the tape is stored with    */
@@ -128,6 +137,8 @@ struct TapeInfo
     byte delay;
   } pos[MAX_TAPE_LEN];
 
+  struct TapeButtonInfo button;
+
   boolean no_valid_file;       /* set when tape file missing or invalid */
 };