diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 08:42:48 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-30 08:42:48 +0100 |
commit | e681eafa78262d0c177832d67900687f2c938081 (patch) | |
tree | 5668476e046c505b9f3fcc8c53b6e0971c146978 /plugins/tcl/tclplugin.h | |
parent | 97dc13fde70810abf07985f45ac459560eae6e96 (diff) |
Rebranding for the rest of plugin*
Diffstat (limited to 'plugins/tcl/tclplugin.h')
-rw-r--r-- | plugins/tcl/tclplugin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/tcl/tclplugin.h b/plugins/tcl/tclplugin.h index fb89e1fa..a5425edf 100644 --- a/plugins/tcl/tclplugin.h +++ b/plugins/tcl/tclplugin.h @@ -30,7 +30,7 @@ typedef struct { char *procPtr; - xchat_hook *hook; + hexchat_hook *hook; } alias; typedef struct { @@ -53,7 +53,7 @@ typedef struct { static char *StrDup(const char *string, int *length); static char *myitoa(long value); -static xchat_context *xchat_smart_context(const char *arg1, const char *arg2); +static hexchat_context *xchat_smart_context(const char *arg1, const char *arg2); static void queue_nexttimer(); static int insert_timer(int seconds, int count, const char *script); static void do_timer(); @@ -79,7 +79,7 @@ static int tcl_chats(ClientData cd, Tcl_Interp * irp, int argc, const char *argv static int tcl_ignores(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); static int tcl_dcclist(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); static int tcl_me(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); -static int tcl_xchat_nickcmp(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); +static int tcl_hexchat_nickcmp(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); static int tcl_strip(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); static int tcl_topic(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); static int tcl_word(ClientData cd, Tcl_Interp * irp, int argc, const char *argv[]); @@ -94,5 +94,5 @@ static int TCL_Event_Handler(void *userdata); static void Tcl_Plugin_Init(); static void Tcl_Plugin_DeInit(); static void banner(); -int xchat_plugin_init(xchat_plugin * plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg); -int xchat_plugin_deinit(); +int hexchat_plugin_init(hexchat_plugin * plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg); +int hexchat_plugin_deinit(); |