mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00

this 'save diff from default config, all games in single config file' thing wasn't a great idea, the implementation was complicated and bug-ridden, so get rid of it.
15 lines
335 B
C
15 lines
335 B
C
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int config_write(const char *fname);
|
|
int config_writelrom(const char *fname);
|
|
int config_readsect(const char *fname, const char *section);
|
|
int config_readlrom(const char *fname);
|
|
int config_get_var_val(void *file, char *line, int lsize, char **rvar, char **rval);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|