From 16d7fd9d7f4849c88acbbfb04f7e09b7c58fd73f Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 28 May 2017 18:13:26 +0200 Subject: implement support for LMDB in ext/dba don't abort txn if cursor is active fix typos --- ext/dba/php_lmdb.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ext/dba/php_lmdb.h (limited to 'ext/dba/php_lmdb.h') diff --git a/ext/dba/php_lmdb.h b/ext/dba/php_lmdb.h new file mode 100644 index 0000000000..1b4928f49b --- /dev/null +++ b/ext/dba/php_lmdb.h @@ -0,0 +1,12 @@ +#ifndef PHP_LMDB_H +#define PHP_LMDB_H + +#if DBA_LMDB + +#include "php_dba.h" + +DBA_FUNCS(lmdb); + +#endif + +#endif -- cgit v1.2.1