initial plugin config framework, can't save multiple entries

This commit is contained in:
Berke Viktor
2011-11-29 20:15:56 +01:00
parent 266a86d0b5
commit b16ca3fa64
8 changed files with 157 additions and 1 deletions

View File

@@ -98,6 +98,13 @@ struct _xchat_plugin
int flags);
void (*xchat_free) (xchat_plugin *ph,
void *ptr);
int (*xchat_set_plugin_pref) (xchat_plugin *ph,
char *var,
char *value);
int (*xchat_get_plugin_pref) (xchat_plugin *ph,
char *var,
char *dest,
int dest_len);
void *(*xchat_dummy4) (xchat_plugin *ph);
void *(*xchat_dummy3) (xchat_plugin *ph);
void *(*xchat_dummy2) (xchat_plugin *ph);