diff options
author | Marius Halden <marius.h@lden.org> | 2016-04-12 00:22:39 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-05-07 14:31:03 +0200 |
commit | ecda1fce37c21bf6925f8bb67135f15cbf22f8aa (patch) | |
tree | e2a13685fb1e2a72390881d30a09a575fd633758 /irc.h | |
parent | 20152af8648494fa7cc73c56c3a09c22ff6e85fe (diff) |
Better handling of set account
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -228,6 +228,8 @@ typedef struct irc_channel_user { int flags; } irc_channel_user_t; +struct account; + typedef enum { IRC_CC_TYPE_DEFAULT = 0x00001, IRC_CC_TYPE_REST = 0x00002, /* Still not implemented. */ @@ -241,7 +243,7 @@ typedef enum { struct irc_control_channel { irc_control_channel_type_t type; struct bee_group *group; - struct account *account; + GSList *account; struct prpl *protocol; char modes[5]; }; |