diff options
author | Anatol Belski <ab@php.net> | 2017-05-28 18:13:26 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-05-28 18:33:12 +0200 |
commit | 16d7fd9d7f4849c88acbbfb04f7e09b7c58fd73f (patch) | |
tree | 5c5649aa35b0969483ce646e1fa71bf2c3b499e0 /ext/dba/php_lmdb.h | |
parent | 2058d8ed22364f9efabd8f867774baba7e2e5aa9 (diff) | |
download | php-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.h | 12 |
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 |