aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/account.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-03-31 22:32:25 -0400
committerWilmer van der Gaast <wilmer@gaast.net>2010-03-31 22:32:25 -0400
commit81e04e162bdc4517b2f357fd16dfd76f68245464 (patch)
tree9c916915ff7b5e46b6316f032871815a5e79de02 /protocols/account.h
parent10a96f44efbeb6af09e2728926ce15b6bda12131 (diff)
nogaim.c is close to doing something useful again without speaking any IRC
itself.
Diffstat (limited to 'protocols/account.h')
-rw-r--r--protocols/account.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/account.h b/protocols/account.h
index 984dcfe6..be27542e 100644
--- a/protocols/account.h
+++ b/protocols/account.h
@@ -41,16 +41,16 @@ typedef struct account
set_t *set;
GHashTable *nicks;
- struct irc *irc;
+ struct bee *bee;
struct im_connection *ic;
struct account *next;
} account_t;
-account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass );
-account_t *account_get( irc_t *irc, char *id );
-void account_del( irc_t *irc, account_t *acc );
-void account_on( irc_t *irc, account_t *a );
-void account_off( irc_t *irc, account_t *a );
+account_t *account_add( bee_t *bee, struct prpl *prpl, char *user, char *pass );
+account_t *account_get( bee_t *bee, char *id );
+void account_del( bee_t *bee, account_t *acc );
+void account_on( bee_t *bee, account_t *a );
+void account_off( bee_t *bee, account_t *a );
char *set_eval_account( set_t *set, char *value );
char *set_eval_account_reconnect_delay( set_t *set, char *value );