summaryrefslogtreecommitdiff
path: root/ext/dba/php_lmdb.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-05-28 18:13:26 +0200
committerAnatol Belski <ab@php.net>2017-05-28 18:33:12 +0200
commit16d7fd9d7f4849c88acbbfb04f7e09b7c58fd73f (patch)
tree5c5649aa35b0969483ce646e1fa71bf2c3b499e0 /ext/dba/php_lmdb.h
parent2058d8ed22364f9efabd8f867774baba7e2e5aa9 (diff)
downloadphp-git-16d7fd9d7f4849c88acbbfb04f7e09b7c58fd73f.tar.gz
implement support for LMDB in ext/dba
don't abort txn if cursor is active fix typos
Diffstat (limited to 'ext/dba/php_lmdb.h')
-rw-r--r--ext/dba/php_lmdb.h12
1 files changed, 12 insertions, 0 deletions
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