added detection of global (common/system-wide) scores directory
[rocksndiamonds.git] / src / libgame / system.h
index b6cea7b51ea2d38ed0d5fddae8174d9fa114521a..fb209d30c3b9b919a92cb814c871ccc884a4395d 100644 (file)
@@ -760,6 +760,9 @@ struct ProgramInfo
   char *(*window_title_function)(void);
   void (*exit_message_function)(char *, va_list);
   void (*exit_function)(int);
+
+  boolean global_scores;
+  boolean many_scores_per_name;
 };
 
 struct OptionInfo
@@ -779,6 +782,7 @@ struct OptionInfo
 
   char *special_flags;
 
+  boolean mytapes;
   boolean serveronly;
   boolean network;
   boolean verbose;
@@ -1414,6 +1418,7 @@ extern int                        FrameCounter;
 void InitProgramInfo(char *, char *, char *, char *, char *, char *, char *,
                     int);
 
+void InitScoresInfo();
 void SetWindowTitle();
 
 void InitWindowTitleFunction(char *(*window_title_function)(void));