Changeset 4006:dc0c95e52a22 for account.h
Legend:
- Unmodified
- Added
- Removed
-
account.h
r3437 r4006 1 1 /* 2 * Copyright (C) 2000- 3Brendan Cully <brendan@kublai.com>2 * Copyright (C) 2000-5 Brendan Cully <brendan@kublai.com> 3 3 * 4 4 * This program is free software; you can redistribute it and/or modify … … 33 33 34 34 /* account flags */ 35 #define M_ACCT_PORT (1<<0) 36 #define M_ACCT_USER (1<<1) 37 #define M_ACCT_PASS (1<<2) 38 #define M_ACCT_SSL (1<<3) 35 #define M_ACCT_PORT (1<<0) 36 #define M_ACCT_USER (1<<1) 37 #define M_ACCT_LOGIN (1<<2) 38 #define M_ACCT_PASS (1<<3) 39 #define M_ACCT_SSL (1<<4) 39 40 40 41 typedef struct 41 42 { 42 43 char user[64]; 44 char login[64]; 43 45 char pass[64]; 44 46 char host[128]; … … 52 54 void mutt_account_tourl (ACCOUNT* account, ciss_url_t* url); 53 55 int mutt_account_getuser (ACCOUNT* account); 56 int mutt_account_getlogin (ACCOUNT* account); 54 57 int mutt_account_getpass (ACCOUNT* account); 55 58 void mutt_account_unsetpass (ACCOUNT* account);
