Added plugin string settings

This commit is contained in:
James Booth
2016-03-26 01:48:42 +00:00
parent a4e6d50a40
commit e2b02733df
8 changed files with 95 additions and 0 deletions

View File

@@ -73,3 +73,5 @@ int (*prof_send_stanza)(char *stanza) = NULL;
int (*prof_settings_get_boolean)(char *group, char *key, int def) = NULL;
void (*prof_settings_set_boolean)(char *group, char *key, int value) = NULL;
char* (*prof_settings_get_string)(char *group, char *key, char *def) = NULL;
void (*prof_settings_set_string)(char *group, char *key, char *value) = NULL;