diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-11-07 17:16:18 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2005-11-07 17:16:18 +0100 |
commit | 7b23afdeead5b873b3e1cfc5ab29ecbf35b8c0ac (patch) | |
tree | 975c4b3725525244353f722b60fef54b79628d92 /account.h | |
parent | fe51bcf0ae238e6fde4400b3dd17ddf99f77ae2a (diff) |
Migrate my pluginable branch to use Wilmers' branch as parent
Diffstat (limited to 'account.h')
-rw-r--r-- | account.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ typedef struct account { - int protocol; + struct prpl *prpl; char *user; char *pass; char *server; @@ -40,7 +40,7 @@ typedef struct account struct account *next; } account_t; -account_t *account_add( irc_t *irc, int protocol, char *user, char *pass ); +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 ); |