summaryrefslogtreecommitdiff
path: root/plugins/Dbx_mdb/src/lmdb/midl.h
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2016-02-14 16:59:15 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2016-02-14 16:59:15 +0000
commitec2cc8103616f2f3726e2ff7455a9aee6d75da8f (patch)
tree7d1b48d37fa39f51258a163954d2f34c3c3b3a97 /plugins/Dbx_mdb/src/lmdb/midl.h
parent7f9dacb21b81a04549df028b1493802b7da069fd (diff)
update lmdb
git-svn-id: http://svn.miranda-ng.org/main/trunk@16279 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_mdb/src/lmdb/midl.h')
-rw-r--r--plugins/Dbx_mdb/src/lmdb/midl.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/Dbx_mdb/src/lmdb/midl.h b/plugins/Dbx_mdb/src/lmdb/midl.h
index 3d0e774406..2331e78398 100644
--- a/plugins/Dbx_mdb/src/lmdb/midl.h
+++ b/plugins/Dbx_mdb/src/lmdb/midl.h
@@ -11,7 +11,7 @@
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
- * Copyright 2000-2014 The OpenLDAP Foundation.
+ * Copyright 2000-2015 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -27,7 +27,6 @@
#define _MDB_MIDL_H_
#include <stddef.h>
-#include <stdint.h>
#ifdef __cplusplus
extern "C" {
@@ -43,7 +42,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 uint64_t MDB_ID;
+typedef size_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
@@ -99,9 +98,8 @@ void mdb_midl_free(MDB_IDL ids);
/** Shrink an IDL.
* Return the IDL to the default size if it has grown larger.
* @param[in,out] idp Address of the IDL to shrink.
- * @return 0 on no change, non-zero if shrunk.
*/
-int mdb_midl_shrink(MDB_IDL *idp);
+void mdb_midl_shrink(MDB_IDL *idp);
/** Make room for num additional elements in an IDL.
* @param[in,out] idp Address of the IDL.