DOKK / manpages / debian 10 / lmdb-doc / mdb_Version.3.en
Version(3) Library Functions Manual Version(3)

Version


#define MDB_VERSION_MAJOR 0
#define MDB_VERSION_MINOR 9
#define MDB_VERSION_PATCH 22
#define MDB_VERINT(a, b, c) (((a) << 24) | ((b) << 16) | (c))
#define MDB_VERSION_FULL MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
#define MDB_VERSION_DATE 'March 21, 2018'
#define MDB_VERSTR(a, b, c, d) 'LMDB ' #a '.' #b '.' #c ': (' d ')'
#define MDB_VERFOO(a, b, c, d) MDB_VERSTR(a,b,c,d)
#define MDB_VERSION_STRING MDB_VERFOO(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH,MDB_VERSION_DATE)

Library major version

Library minor version

Library patch version

Combine args a,b,c into a single integer for easy version comparisons

The full library version as a single integer

The release date of this library version

A stringifier for the version info

A helper for the stringifier macro

The full library version as a C string

Generated automatically by Doxygen for LMDB from the source code.

Mon Jul 16 2018 LMDB