9fc8c36bb25d973cca4e8db772dfad17dade24f2
[dosdemo] / src / cfgopt.h
1 #ifndef CFGOPT_H_
2 #define CFGOPT_H_
3
4 struct options {
5         const char *start_scr;
6         int music;
7         int mouse, sball;
8         int vsync;
9         int dbginfo;
10 #ifndef MSDOS
11         int fullscreen;
12 #endif
13 };
14
15 extern struct options opt;
16
17 int parse_args(int argc, char **argv);
18 int load_config(const char *fname);
19
20 #endif  /* CFGOPT_H_ */