diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-31 23:38:50 -0400 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-03-31 23:38:50 -0400 |
commit | d860a8ddf5039f7208bff4c179bc9fe1549da6da (patch) | |
tree | cb96dfcc222e78bd23d25f480b94f2c69470e373 /irc.h | |
parent | 81e04e162bdc4517b2f357fd16dfd76f68245464 (diff) |
Restored "account" root command and restored enough stuff to be able to
send messages. Also started moving stuff out from nogaim.* into bee_* files.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -74,7 +74,6 @@ typedef struct irc char umode[8]; struct query *queries; - struct account *accounts; GSList *file_transfers; GSList *users, *channels; @@ -112,7 +111,7 @@ typedef struct irc_user guint sendbuf_timer; //int sendbuf_flags; - //struct user *b; + struct bee_user *bu; const struct irc_user_funcs *f; } irc_user_t; @@ -152,6 +151,8 @@ struct irc_channel_funcs gboolean (*privmsg)( irc_channel_t *iu, const char *msg ); }; +extern const struct bee_ui_funcs irc_ui_funcs; + /* irc.c */ extern GSList *irc_connection_list; |