rnd-19990205-1
[rocksndiamonds.git] / src / files.h
1 /***********************************************************
2 *  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
3 *----------------------------------------------------------*
4 *  (c) 1995-98 Artsoft Entertainment                       *
5 *              Holger Schemel                              *
6 *              Oststrasse 11a                              *
7 *              33604 Bielefeld                             *
8 *              phone: ++49 +521 290471                     *
9 *              email: aeglos@valinor.owl.de                *
10 *----------------------------------------------------------*
11 *  files.h                                                 *
12 ***********************************************************/
13
14 #ifndef FILES_H
15 #define FILES_H
16
17 #include "main.h"
18
19 void LoadLevel(int);
20 void SaveLevel(int);
21
22 void LoadTape(int);
23 void SaveTape(int);
24
25 void LoadScore(int);
26 void SaveScore(int);
27
28 int getLastPlayedLevelOfLevelSeries(char *);
29
30 void LoadLevelInfo(void);
31 void LoadSetup(void);
32 void SaveSetup(void);
33 void LoadLevelSetup(void);
34 void SaveLevelSetup(void);
35
36 #ifdef MSDOS
37 FILE *openErrorFile();
38 void dumpErrorFile();
39 #endif
40
41 #endif  /* FILES_H */