diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-15 12:55:27 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2005-12-15 12:55:27 +0100 |
commit | bf02a679c61b0f030ee8f2f01698699a7775f7d5 (patch) | |
tree | 0b890c2dd7fb03aa151df76c99146a765ca41adb /account.h | |
parent | 11e090b246a86deb7b882217772b90fc52d7e4f6 (diff) | |
parent | 547f9373fe4cda601e53759500d189dd580a0d78 (diff) |
Merged Jelmer's pluginable tree (mainly useful for the Win32 port).
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 ); |