Go to the documentation of this file. 162 #include <sys/types.h> 193 #define MDB_VERSION_MAJOR 0 195 #define MDB_VERSION_MINOR 9 197 #define MDB_VERSION_PATCH 18 200 #define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c)) 203 #define MDB_VERSION_FULL \ 204 MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH) 207 #define MDB_VERSION_DATE "February 5, 2016" 210 #define MDB_VERSTR(a,b,c,d) "LMDB " #a "." #b "." #c ": (" d ")" 213 #define MDB_VERFOO(a,b,c,d) MDB_VERSTR(a,b,c,d) 216 #define MDB_VERSION_STRING \ 217 MDB_VERFOO(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH,MDB_VERSION_DATE) 279 #define MDB_FIXEDMAP 0x01 281 #define MDB_NOSUBDIR 0x4000 283 #define MDB_NOSYNC 0x10000 285 #define MDB_RDONLY 0x20000 287 #define MDB_NOMETASYNC 0x40000 289 #define MDB_WRITEMAP 0x80000 291 #define MDB_MAPASYNC 0x100000 293 #define MDB_NOTLS 0x200000 295 #define MDB_NOLOCK 0x400000 297 #define MDB_NORDAHEAD 0x800000 299 #define MDB_NOMEMINIT 0x1000000 306 #define MDB_REVERSEKEY 0x02 308 #define MDB_DUPSORT 0x04 311 #define MDB_INTEGERKEY 0x08 313 #define MDB_DUPFIXED 0x10 315 #define MDB_INTEGERDUP 0x20 317 #define MDB_REVERSEDUP 0x40 319 #define MDB_CREATE 0x40000 326 #define MDB_NOOVERWRITE 0x10 331 #define MDB_NODUPDATA 0x20 333 #define MDB_CURRENT 0x40 337 #define MDB_RESERVE 0x10000 339 #define MDB_APPEND 0x20000 341 #define MDB_APPENDDUP 0x40000 343 #define MDB_MULTIPLE 0x80000 352 #define MDB_CP_COMPACT 0x01