table of contents
other versions
- jessie 0.9.14-1
- jessie-backports 0.9.18-1~bpo80+1
- stretch 0.9.18-5
- testing 0.9.22-1
- unstable 0.9.22-1
Version Macros(3) | Library Functions Manual | Version Macros(3) |
NAME¶
Version Macros -Macros¶
#define MDB_VERSION_MAJOR 0
Detailed Description¶
Macro Definition Documentation¶
#define MDB_VERSION_MAJOR 0¶
Library major version#define MDB_VERSION_MINOR 9¶
Library minor version#define MDB_VERSION_PATCH 14¶
Library patch version#define MDB_VERINT(a, b, c) (((a) << 24) | ((b) << 16) | (c))¶
Combine args a,b,c into a single integer for easy version comparisons#define MDB_VERSION_FULL MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR, MDB_VERSION_PATCH)¶
The full library version as a single integer#define MDB_VERSION_DATE 'September 20, 2014'¶
The release date of this library version#define MDB_VERSTR(a, b, c, d) 'LMDB ' #a '.' #b '.' #c ': (' d ')'¶
A stringifier for the version info#define MDB_VERFOO(a, b, c, d) MDB_VERSTR(a,b,c,d)¶
A helper for the stringifier macro#define MDB_VERSION_STRING MDB_VERFOO(MDB_VERSION_MAJOR,MDB_VERSION_MINOR, MDB_VERSION_PATCH, MDB_VERSION_DATE)¶
The full library version as a C stringAuthor¶
Generated automatically by Doxygen for LMDB from the source code.Mon Oct 13 2014 | LMDB |