moved code for buttons to stop game or tape to separate functions
[rocksndiamonds.git] / src / tape.h
index 09027d51b035e5ba61bf79868366243132d753fd..b418ea33058a111bc78c92618c181bd4e6ef31a0 100644 (file)
@@ -239,6 +239,7 @@ struct TapeInfo
 
   boolean show_game_buttons;   // show game buttons in tape viewport
 
+  boolean no_info_chunk;       // used to identify old tape file format
   boolean no_valid_file;       // set when tape file missing or invalid
 };
 
@@ -262,11 +263,15 @@ void TapeStartPlaying(void);
 void TapeStopPlaying(void);
 byte *TapePlayAction(void);
 void TapeStop(void);
+void TapeStopGame(void);
+void TapeStopTape(void);
 void TapeErase(void);
 unsigned int GetTapeLengthFrames(void);
 unsigned int GetTapeLengthSeconds(void);
 void TapeQuickSave(void);
 void TapeQuickLoad(void);
+void TapeRestartGame(void);
+void TapeReplayAndPauseBeforeEnd(void);
 
 boolean hasSolutionTape(void);
 boolean InsertSolutionTape(void);