diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-13 22:28:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-13 22:28:39 +0000 |
commit | 9a10497ccd1176e3832a4ee752667de70c830800 (patch) | |
tree | f6b7d5279def6386d0b3e4d9b894d897e85b8dca /plugins/Dbx_mdb/src/lmdb/midl.h | |
parent | c842fa175cdda0331567ea6f06e7084ceb51d260 (diff) |
fix for profile compatibility between 64 & 32-bit versions
git-svn-id: http://svn.miranda-ng.org/main/trunk@11851 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/lmdb/midl.h')
-rw-r--r-- | plugins/Dbx_mdb/src/lmdb/midl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Dbx_mdb/src/lmdb/midl.h b/plugins/Dbx_mdb/src/lmdb/midl.h index a7f25026ce..3d0e774406 100644 --- a/plugins/Dbx_mdb/src/lmdb/midl.h +++ b/plugins/Dbx_mdb/src/lmdb/midl.h @@ -27,6 +27,7 @@ #define _MDB_MIDL_H_ #include <stddef.h> +#include <stdint.h> #ifdef __cplusplus extern "C" { @@ -42,7 +43,7 @@ extern "C" { /** A generic unsigned ID number. These were entryIDs in back-bdb. * Preferably it should have the same size as a pointer. */ -typedef size_t MDB_ID; +typedef uint64_t MDB_ID; /** An IDL is an ID List, a sorted array of IDs. The first * element of the array is a counter for how many actual |