diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-12-30 21:11:22 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-12-30 21:11:22 +0100 |
commit | b66298d369cc72b593368d70abb0a994009eb44e (patch) | |
tree | 95d231a11debf6b57c5a169bfefe469bb89de858 /src/plugins/irc/irc-ctcp.h | |
parent | 5c6fc8c4bd190124a6542e1340ebcabee928e980 (diff) | |
download | weechat-b66298d369cc72b593368d70abb0a994009eb44e.zip |
irc: add IRC message tags in messages displayed (closes #1680)
Diffstat (limited to 'src/plugins/irc/irc-ctcp.h')
-rw-r--r-- | src/plugins/irc/irc-ctcp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-ctcp.h b/src/plugins/irc/irc-ctcp.h index 809d98505..80c6184d3 100644 --- a/src/plugins/irc/irc-ctcp.h +++ b/src/plugins/irc/irc-ctcp.h @@ -36,6 +36,7 @@ extern const char *irc_ctcp_get_reply (struct t_irc_server *server, const char *ctcp); extern void irc_ctcp_display_reply_from_nick (struct t_irc_server *server, time_t date, + struct t_hashtable *tags, const char *command, const char *nick, const char *address, @@ -43,7 +44,8 @@ extern void irc_ctcp_display_reply_from_nick (struct t_irc_server *server, extern char *irc_ctcp_replace_variables (struct t_irc_server *server, const char *format); extern void irc_ctcp_recv (struct t_irc_server *server, time_t date, - const char *command, struct t_irc_channel *channel, + struct t_hashtable *tags, const char *command, + struct t_irc_channel *channel, const char *address, const char *nick, const char *remote_nick, const char *arguments, const char *message); |