aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-06-06 01:33:33 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-06-06 01:33:33 +0100
commit18da20bf7690ca3c1e9cf4b70c2749a11c75b339 (patch)
treeba6998f3923c2ce1d8ab041da4c3f5f7a0fa4ed0 /irc.h
parentc1a8a163703a903c7a69e06286013f12d6bf865e (diff)
Added /part msgs, and the ability to silently remove users from channels
(when sending a /quit instead, for example).
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.h b/irc.h
index eeb9b1b2..2e6fff4f 100644
--- a/irc.h
+++ b/irc.h
@@ -221,7 +221,7 @@ irc_channel_t *irc_channel_new( irc_t *irc, const char *name );
irc_channel_t *irc_channel_by_name( irc_t *irc, const char *name );
int irc_channel_free( irc_channel_t *ic );
int irc_channel_add_user( irc_channel_t *ic, irc_user_t *iu );
-int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu );
+int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu, gboolean silent, const char *msg );
irc_channel_user_t *irc_channel_has_user( irc_channel_t *ic, irc_user_t *iu );
int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_t *who );
void irc_channel_user_set_mode( irc_channel_t *ic, irc_user_t *iu, irc_channel_user_flags_t flags );