php-src/ext/dba/php_lmdb.h
George Peter Banyard 3c372901bd Add support to pass driver flags to DBA handlers
Currently only LMDB with DBA_LMDB_USE_SUB_DIR/DBA_LMDB_NO_SUB_DIR are supported
2022-07-23 18:38:27 +01:00

14 lines
129 B
C

#ifndef PHP_LMDB_H
#define PHP_LMDB_H
#ifdef DBA_LMDB
#include "php_dba.h"
#include <lmdb.h>
DBA_FUNCS(lmdb);
#endif
#endif