picodrive/platform/common/config_file.h
notaz 504e2f5688 frontend: simplify config handling
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.
2013-06-29 23:02:48 +03:00

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