diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-12-05 21:40:17 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-12-05 21:40:17 +0100 |
commit | d8d63a27dcfd38245927af95521b6f8918b23795 (patch) | |
tree | 75e4675b12970db6645c087ab75ec35c1b1ba9fd /account.h | |
parent | f4aa393b221dcc709f189ed04945ee67e956872a (diff) | |
parent | 55078f59c8e9f52f1d10bed55511e5e58ec3e53b (diff) |
[merge] wilmer
Diffstat (limited to 'account.h')
-rw-r--r-- | account.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -33,8 +33,12 @@ typedef struct account char *pass; char *server; + int auto_connect; int reconnect; + set_t *set; + GHashTable *nicks; + struct irc *irc; struct gaim_connection *gc; struct account *next; @@ -46,4 +50,10 @@ 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 ); +char *set_eval_account( set_t *set, char *value ); + +#define ACC_SET_NOSAVE 1 +#define ACC_SET_OFFLINE_ONLY 2 +#define ACC_SET_ONLINE_ONLY 4 + #endif |