Changeset 7b23afd for account.h


Ignore:
Timestamp:
2005-11-07T16:16:18Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
f7f3ada
Parents:
fe51bcf
Message:

Migrate my pluginable branch to use Wilmers' branch as parent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • account.h

    rfe51bcf r7b23afd  
    2929typedef struct account
    3030{
    31         int protocol;
     31        struct prpl *prpl;
    3232        char *user;
    3333        char *pass;
     
    4141} account_t;
    4242
    43 account_t *account_add( irc_t *irc, int protocol, char *user, char *pass );
     43account_t *account_add( irc_t *irc, struct prpl *prpl, char *user, char *pass );
    4444account_t *account_get( irc_t *irc, char *id );
    4545void account_del( irc_t *irc, account_t *acc );
Note: See TracChangeset for help on using the changeset viewer.