aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-07-18 23:12:19 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-07-18 23:12:19 +0100
commit94d5da9cc78a89b6292d53c7784a3076500d67e2 (patch)
treeeb90e2b2b8552805adf2bde4422ef635a43b1b87 /irc.h
parent4f22a68c5d1dfd0d1da8b44c3a9d60a7754633b7 (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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index 1d5bd113..69f9dfd0 100644
--- a/irc.h
+++ b/irc.h
@@ -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;