diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-11-30 08:59:40 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-11-30 08:59:40 +0100 |
commit | b692172aa907243c7543015468da0fb077a9ac99 (patch) | |
tree | 53d643c2f8bfb47f6752c274e5ee7f2a253b0f56 /src/common/plugin.h | |
parent | e488a0232a467b0b469a45f251b264f723380276 (diff) |
refactoring
Diffstat (limited to 'src/common/plugin.h')
-rw-r--r-- | src/common/plugin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/plugin.h b/src/common/plugin.h index f0ae6fc4..858ed815 100644 --- a/src/common/plugin.h +++ b/src/common/plugin.h @@ -98,16 +98,16 @@ struct _xchat_plugin int flags); void (*xchat_free) (xchat_plugin *ph, void *ptr); - int (*xchat_set_plugin_pref_str) (xchat_plugin *ph, + int (*xchat_set_pluginpref_str) (xchat_plugin *ph, char *var, char *value); - int (*xchat_get_plugin_pref_str) (xchat_plugin *ph, + int (*xchat_get_pluginpref_str) (xchat_plugin *ph, char *var, char *dest); - int (*xchat_set_plugin_pref_int) (xchat_plugin *ph, + int (*xchat_set_pluginpref_int) (xchat_plugin *ph, char *var, int value); - int (*xchat_get_plugin_pref_int) (xchat_plugin *ph, + int (*xchat_get_pluginpref_int) (xchat_plugin *ph, char *var); void *(*xchat_dummy4) (xchat_plugin *ph); void *(*xchat_dummy3) (xchat_plugin *ph); |