diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-30 16:18:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-30 16:18:28 +0000 |
commit | 540f5010d9ebdec65b09bdc71fcd6cdf2010beaf (patch) | |
tree | 1a91bc7164a8072b1bc8859197945a6064d865ee /plugins/MetaContacts/src/metacontacts.h | |
parent | 362fe96c972d71a7d9994212794d54cc93da7139 (diff) |
"Hide in status bar" option removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@2566 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MetaContacts/src/metacontacts.h')
-rw-r--r-- | plugins/MetaContacts/src/metacontacts.h | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/plugins/MetaContacts/src/metacontacts.h b/plugins/MetaContacts/src/metacontacts.h index 8a0abca59f..a41c8e4ba9 100644 --- a/plugins/MetaContacts/src/metacontacts.h +++ b/plugins/MetaContacts/src/metacontacts.h @@ -146,27 +146,28 @@ enum MenuDisplayNameType {DNT_UID = 0, DNT_DID = 1}; enum MenuFunctionType {FT_MSG = 0, FT_MENU = 1, FT_INFO = 2};
enum CListDisplayNameType {CNNT_NICK = 0, CNNT_DISPLAYNAME = 1};
-typedef struct tag_MetaOptions {
- BOOL set_default_on_recv;
- BOOL always_use_default;
- BOOL suppress_status;
+struct MetaOptions
+{
+ BYTE set_default_on_recv;
+ BYTE always_use_default;
+ BYTE suppress_status;
+ BYTE copy_subcontact_history;
+ BYTE subcontact_windows;
+ BYTE metahistory;
+ BYTE subhistory;
+ BYTE copydata;
+ BYTE lockHandle;
+ BYTE temp_default;
+ BYTE flash_meta_message_icon;
+ BYTE copy_userinfo;
+ BYTE use_proto_recv;
+
int menu_contact_label;
- int clist_contact_name;
int menu_function;
- BOOL suppress_proto;
- BOOL copy_subcontact_history;
+ int clist_contact_name;
int days_history;
int set_status_from_offline_delay;
- BOOL subcontact_windows;
- BOOL metahistory;
- BOOL subhistory;
- BOOL copydata;
- BOOL lockHandle;
- BOOL temp_default;
- BOOL flash_meta_message_icon;
- BOOL copy_userinfo;
- BOOL use_proto_recv;
-} MetaOptions;
+};
extern MetaOptions options;
|