aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2016-03-21 13:46:32 +0100
committerMarius Halden <marius.h@lden.org>2016-05-07 14:27:54 +0200
commit58feabffb4155be993b822b105f5fec73377fcfd (patch)
treec9b09db657ef63bab261a8a6fc3f64a9344e3483 /irc.h
parentc9cf3bf878606ee7d4b3933b7e86af9fb05f58b5 (diff)
Add support for message tags in irc_send_msg*
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index b9bf0e28..3d8ad1d5 100644
--- a/irc.h
+++ b/irc.h
@@ -355,8 +355,11 @@ void irc_send_topic(irc_channel_t *ic, gboolean topic_change);
void irc_send_whois(irc_user_t *iu);
void irc_send_who(irc_t *irc, GSList *l, const char *channel);
void irc_send_msg(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix);
+void irc_send_msg_tagged(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *prefix, const char *tags);
void irc_send_msg_raw(irc_user_t *iu, const char *type, const char *dst, const char *msg);
+void irc_send_msg_raw_tagged(irc_user_t *iu, const char *type, const char *dst, const char *msg, const char *tags);
void irc_send_msg_f(irc_user_t *iu, const char *type, const char *dst, const char *format, ...) G_GNUC_PRINTF(4, 5);
+void irc_send_msg_f_tagged(irc_user_t *iu, const char *type, const char *dst, const char *tags, const char *format, ...) G_GNUC_PRINTF(5, 6);
void irc_send_nick(irc_user_t *iu, const char *new_nick);
void irc_send_channel_user_mode_diff(irc_channel_t *ic, irc_user_t *iu,
irc_channel_user_flags_t old_flags, irc_channel_user_flags_t new_flags);