aboutsummaryrefslogtreecommitdiffstats
path: root/account.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-12-14 02:17:25 +0100
committerJelmer Vernooij <jelmer@samba.org>2005-12-14 02:17:25 +0100
commit703f0f7f4622194bce8023712a3a9966be6f8827 (patch)
tree311125ae518c2b277845dc78ec62fc9553081bdf /account.h
parent22bf64eab8a79352317ee190cddfeef3011aa8dc (diff)
parent568aaf7ce17a4db2dddd13f8baed02a6d2757eb6 (diff)
Merge my pluginable branch
Diffstat (limited to 'account.h')
-rw-r--r--account.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/account.h b/account.h
index a8653411..37cd8814 100644
--- a/account.h
+++ b/account.h
@@ -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 );