diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-18 23:12:19 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-18 23:12:19 +0100 |
commit | 94d5da9cc78a89b6292d53c7784a3076500d67e2 (patch) | |
tree | eb90e2b2b8552805adf2bde4422ef635a43b1b87 /irc.h | |
parent | 4f22a68c5d1dfd0d1da8b44c3a9d60a7754633b7 (diff) |
One of the last few things I wanted to get done in this branch: combining
show_offline and away_devoice and possibly other ideas into one setting
called show_users. Documentation will come soon. :-P
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -179,6 +179,7 @@ typedef enum IRC_CHANNEL_USER_OP = 1, IRC_CHANNEL_USER_HALFOP = 2, IRC_CHANNEL_USER_VOICE = 4, + IRC_CHANNEL_USER_NONE = 8, } irc_channel_user_flags_t; typedef struct irc_channel_user @@ -202,6 +203,7 @@ struct irc_control_channel struct bee_group *group; struct account *account; struct prpl *protocol; + char modes[4]; }; extern const struct bee_ui_funcs irc_ui_funcs; |