Changes in protocols/account.h [93e0901:3ac6d9f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/account.h
r93e0901 r3ac6d9f 58 58 int account_reconnect_delay(account_t *a); 59 59 60 int protocol_account_islocal(const char* protocol); 61 60 62 typedef enum { 61 63 ACC_SET_OFFLINE_ONLY = 0x02, /* Allow changes only if the acct is offline. */ 62 64 ACC_SET_ONLINE_ONLY = 0x04, /* Allow changes only if the acct is online. */ 65 ACC_SET_LOCKABLE = 0x08 /* Setting cannot be changed if the account is locked down */ 63 66 } account_set_flag_t; 64 67 … … 67 70 ACC_FLAG_STATUS_MESSAGE = 0x02, /* Supports status messages (without being away). */ 68 71 ACC_FLAG_HANDLE_DOMAINS = 0x04, /* Contact handles need a domain portion. */ 69 ACC_FLAG_LOCAL_CONTACTS = 0x08, /* Contact list is local. */ 72 ACC_FLAG_LOCAL = 0x08, /* Contact list is local. */ 73 ACC_FLAG_LOCKED = 0x10, /* Account is locked (cannot be deleted, certain settings can't changed) */ 70 74 } account_flag_t; 71 75
Note: See TracChangeset
for help on using the changeset viewer.