summaryrefslogtreecommitdiff
path: root/plugins/Dbx_mdb/src/commonheaders.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-01-18 21:14:32 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-01-18 21:14:32 +0000
commit78b13a92fb3bbc7d7ae3cc31e84a99758e392d4d (patch)
treeaf3d3f950b58cebd79f35249986b1ed878707fd1 /plugins/Dbx_mdb/src/commonheaders.h
parentffed014ccd5370a5073594d55dd0dc88080e0b3d (diff)
bunch of small fixes, optimizations and improvements
git-svn-id: http://svn.miranda-ng.org/main/trunk@11874 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/commonheaders.h')
-rw-r--r--plugins/Dbx_mdb/src/commonheaders.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Dbx_mdb/src/commonheaders.h b/plugins/Dbx_mdb/src/commonheaders.h
index c9f9d4b44d..2d1a6ae580 100644
--- a/plugins/Dbx_mdb/src/commonheaders.h
+++ b/plugins/Dbx_mdb/src/commonheaders.h
@@ -48,13 +48,6 @@ extern "C"
#include "lmdb\lmdb.h"
};
-#include "dbintf.h"
-#include "resource.h"
-#include "version.h"
-
-extern HINSTANCE g_hInst;
-extern LIST<CDbxMdb> g_Dbs;
-
class txn_ptr
{
MDB_txn *m_txn;
@@ -107,6 +100,13 @@ public:
__forceinline operator MDB_cursor*() const { return m_cursor; }
};
+#include "dbintf.h"
+#include "resource.h"
+#include "version.h"
+
+extern HINSTANCE g_hInst;
+extern LIST<CDbxMdb> g_Dbs;
+
#ifdef __GNUC__
#define mir_i64(x) (x##LL)
#else