Only expose config_file_dump_all for RetroArch so far

This commit is contained in:
twinaphex 2014-10-21 09:22:12 +02:00
parent 3d76e33970
commit 6f3c7cba8a
2 changed files with 4 additions and 0 deletions

View File

@ -875,6 +875,7 @@ void config_file_dump(config_file_t *conf, FILE *file)
}
}
#ifdef RARCH_INTERNAL
void config_file_dump_all(config_file_t *conf)
{
struct include_list *includes = conf->includes;
@ -892,6 +893,7 @@ void config_file_dump_all(config_file_t *conf)
list = list->next;
}
}
#endif
bool config_entry_exists(config_file_t *conf, const char *entry)
{

View File

@ -126,8 +126,10 @@ bool config_file_write(config_file_t *conf, const char *path);
* Does not close the file. */
void config_file_dump(config_file_t *conf, FILE *file);
#ifdef RARCH_INTERNAL
/* Also dumps inherited values, useful for logging. */
void config_file_dump_all(config_file_t *conf);
#endif
#ifdef __cplusplus
}