Added integer settings for plugins

This commit is contained in:
James Booth
2016-03-26 02:19:30 +00:00
parent e2b02733df
commit ce9b0836a0
8 changed files with 90 additions and 0 deletions

View File

@@ -75,5 +75,7 @@ int (*prof_settings_get_boolean)(char *group, char *key, int def);
void (*prof_settings_set_boolean)(char *group, char *key, int value);
char* (*prof_settings_get_string)(char *group, char *key, char *def);
void (*prof_settings_set_string)(char *group, char *key, char *value);
int (*prof_settings_get_int)(char *group, char *key, int def);
void (*prof_settings_set_int)(char *group, char *key, int value);
#endif