diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-02-16 20:27:28 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-02-16 20:27:28 +0000 |
commit | c491b393888992990070c5c31265db17af96daaf (patch) | |
tree | c1fefaa8a1af274e4afa7c8d05f85bba5331e647 /src/plugins/plugins-interface.c | |
parent | 8855d39f44892dc91f7aaef536e49082ff8517f7 (diff) | |
download | weechat-c491b393888992990070c5c31265db17af96daaf.zip |
Updated doc, renamed functions in plugins API
Diffstat (limited to 'src/plugins/plugins-interface.c')
-rw-r--r-- | src/plugins/plugins-interface.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/plugins-interface.c b/src/plugins/plugins-interface.c index 9c682324d..bd8cdd087 100644 --- a/src/plugins/plugins-interface.c +++ b/src/plugins/plugins-interface.c @@ -153,12 +153,12 @@ weechat_plugin_exec_on_files (t_weechat_plugin *plugin, char *directory, } /* - * weechat_plugin_printf: print a message on a server or channel buffer + * weechat_plugin_print: print a message on a server or channel buffer */ void -weechat_plugin_printf (t_weechat_plugin *plugin, - char *server, char *channel, char *message, ...) +weechat_plugin_print (t_weechat_plugin *plugin, + char *server, char *channel, char *message, ...) { t_gui_buffer *ptr_buffer; va_list argptr; @@ -176,11 +176,11 @@ weechat_plugin_printf (t_weechat_plugin *plugin, } /* - * weechat_plugin_printf_server: print a message on server buffer + * weechat_plugin_print_server: print a message on server buffer */ void -weechat_plugin_printf_server (t_weechat_plugin *plugin, char *message, ...) +weechat_plugin_print_server (t_weechat_plugin *plugin, char *message, ...) { va_list argptr; static char buf[8192]; @@ -196,11 +196,11 @@ weechat_plugin_printf_server (t_weechat_plugin *plugin, char *message, ...) } /* - * weechat_plugin_infobar_printf: print a message in infobar + * weechat_plugin_print_infobar: print a message in infobar */ void -weechat_plugin_infobar_printf (t_weechat_plugin *plugin, int time_displayed, char *message, ...) +weechat_plugin_print_infobar (t_weechat_plugin *plugin, int time_displayed, char *message, ...) { va_list argptr; static char buf[1024]; |