]> Shamusworld >> Repos - stargem2/blob - src/sdlemu_config.h
Finally fixed problems with demo mode.
[stargem2] / src / sdlemu_config.h
1 #ifndef __SDL_CONFIG_H__
2 #define __SDL_CONFIG_H__
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 int sdlemu_init_config(const char * filename);
9 const char * sdlemu_getval_string(const char * key_string, const char * default_string);
10 int sdlemu_getval_int(const char * key_string, int default_int);
11 int sdlemu_getval_bool(const char * key_string, int default_int);
12
13 #ifdef __cplusplus
14 }
15 #endif
16
17 #endif