summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/configfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/configfile.h')
-rw-r--r--apps/plugins/lib/configfile.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/lib/configfile.h b/apps/plugins/lib/configfile.h
index 78cc8b1b6c..fcce7de275 100644
--- a/apps/plugins/lib/configfile.h
+++ b/apps/plugins/lib/configfile.h
@@ -38,7 +38,9 @@ struct configdata
38}; 38};
39 39
40void configfile_init(struct plugin_api* newrb); 40void configfile_init(struct plugin_api* newrb);
41int configfile_save(char *filename, struct configdata *cfg, int num_items); 41int configfile_save(const char *filename, struct configdata *cfg,
42int configfile_load(char *filename, struct configdata *cfg, int num_items); 42 int num_items, int version);
43int configfile_load(const char *filename, struct configdata *cfg,
44 int num_items, int min_version);
43 45
44#endif 46#endif