X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ffiles.h;h=9aa751f89f12612b933d3468d1fb89aaadaf3ee5;hb=d7d97176a88ee47f893055480c76b9c05a253d05;hp=e34532a171087f7b1e870a5bb5dcc63e893b2510;hpb=19b6c35938826bfd71478d7ddaf1a4729420d3b2;p=rocksndiamonds.git diff --git a/src/files.h b/src/files.h index e34532a1..9aa751f8 100644 --- a/src/files.h +++ b/src/files.h @@ -1,13 +1,12 @@ /*********************************************************** * Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* ©1995 Artsoft Development * -* Holger Schemel * -* 33659 Bielefeld-Senne * -* Telefon: (0521) 493245 * -* eMail: aeglos@valinor.owl.de * -* aeglos@uni-paderborn.de * -* q99492@pbhrzx.uni-paderborn.de * +* (c) 1995-98 Artsoft Entertainment * +* Holger Schemel * +* Oststrasse 11a * +* 33604 Bielefeld * +* phone: ++49 +521 290471 * +* email: aeglos@valinor.owl.de * *----------------------------------------------------------* * files.h * ***********************************************************/ @@ -52,9 +51,14 @@ #define SETUP_SCROLL_DELAY_ON(x) (((x) & SETUP_SCROLL_DELAY) != 0) #define SETUP_SOFT_SCROLL_ON(x) (((x) & SETUP_SOFT_SCROLL) != 0) -BOOL CreateNewScoreFile(void); -BOOL CreateNewNamesFile(int); -BOOL LoadLevelInfo(void); +/* for LoadSetup() */ +#define MAX_LINE_LEN 1000 +#define MAX_SETUP_TOKEN_LEN 100 +#define MAX_SETUP_VALUE_LEN 100 + +boolean CreateNewScoreFile(void); +boolean CreateNewNamesFile(int); +boolean LoadLevelInfo(void); void LoadLevel(int); void LoadLevelTape(int); void LoadScore(int); @@ -65,5 +69,7 @@ void SaveScore(int); void SavePlayerInfo(int); void LoadJoystickData(void); void SaveJoystickData(void); +void LoadSetup(void); +void SaveSetup(void); #endif