aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-07-04 11:16:07 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-07-04 11:16:07 +0100
commitc8eeadd72286b87cc1638e388669e00e8c8b9f1e (patch)
treeeba8580124c02c2229a6158cd8a85aa010c7f523 /irc.h
parent0bd948edfea280cf9f05e21cd5bef4b7fdf3335c (diff)
Added automatic joining of channels. Auto-rejoin functionality for
groupchats not reimplemented yet but that's the next step.
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index 96b05d44..e909d6b9 100644
--- a/irc.h
+++ b/irc.h
@@ -236,6 +236,7 @@ int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu, gboolean silent, co
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 );
+void irc_channel_auto_joins( irc_t *irc, struct account *acc );
void irc_channel_printf( irc_channel_t *ic, char *format, ... );
gboolean irc_channel_name_ok( const char *name );
void irc_channel_name_strip( char *name );