added serial spaceball support in the dos version. can be used for
[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 sball;
8 };
9
10 extern struct options opt;
11
12 int parse_args(int argc, char **argv);
13 int load_config(const char *fname);
14
15 #endif  /* CFGOPT_H_ */