rnd-19981108-2
[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 boolean LoadLevelInfo(void);
20
21 void LoadLevel(int);
22 void SaveLevel(int);
23
24 void LoadTape(int);
25 void SaveTape(int);
26
27 void LoadScore(int);
28 void SaveScore(int);
29
30 int getLastPlayedLevelOfLevelSeries(char *);
31
32 void LoadSetup(void);
33 void SaveSetup(void);
34 void LoadLevelSetup(void);
35 void SaveLevelSetup(void);
36
37 #endif  /* FILES_H */