-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiniconfig.h
More file actions
52 lines (31 loc) · 787 Bytes
/
iniconfig.h
File metadata and controls
52 lines (31 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef _INCLUDE_CONFIG_H
#define _INCLUDE_CONFIG_H
#include "pce.h"
#include "debug.h"
/*
#include "osd_keyboard.h"
#include "osd_cd.h"
*/
#include "interf.h"
#include "lang.h"
#if defined(SDL)
// #include "osd_machine_sdl.h"
#else // not SDL
// #include "osd_machine.h"
#endif
#if defined(LINUX)
#include "sys/param.h"
#endif
void set_config_file (const char *filename);
void set_config_file_back (void);
void parse_INIfile();
/* check the configuration file for options
also make some global initialisations */
void parse_commandline(int argc, char** argv);
/* check the command line for options */
void save_config (void);
extern unsigned char joy_mapping[5][16];
extern SInt32 smode,vmode;
extern char* bmdefault;
extern char cdsystem_path[PATH_MAX];
#endif