diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-12 23:00:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-12 23:00:18 +0000 |
commit | 88722c0734ae6ce9b91ba397b89c4b73ed6f064d (patch) | |
tree | f7015fc820d7ec94dcea7f9e4511edcb9d6bce69 /plugins/Dbx_mdb/src/dbintf.h | |
parent | 3f5208b9147b32ddcf259ec8bb3fb280192928f8 (diff) |
transaction locker
very first version of settings writer/reader
git-svn-id: http://svn.miranda-ng.org/main/trunk@11847 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/dbintf.h')
-rw-r--r-- | plugins/Dbx_mdb/src/dbintf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/Dbx_mdb/src/dbintf.h b/plugins/Dbx_mdb/src/dbintf.h index 16f5a7de42..78507969df 100644 --- a/plugins/Dbx_mdb/src/dbintf.h +++ b/plugins/Dbx_mdb/src/dbintf.h @@ -80,6 +80,13 @@ struct ModuleName #include <pshpack1.h>
+struct DBSettingKey
+{
+ DWORD dwContactID;
+ DWORD dwOfsModule;
+ char szSettingName[100];
+};
+
#define DBCONTACT_SIGNATURE 0x43DECADEu
struct DBContact
{
@@ -221,6 +228,7 @@ protected: ////////////////////////////////////////////////////////////////////////////
// settings
+ MDB_dbi m_dbSettings;
int m_codePage;
HANDLE hService, hHook;
|