Go to the documentation of this file.
14 #define HPI_VER HPI_VERSION_CONSTRUCTOR(4, 10, 1)
17 #define HPI_VER_STRING "4.10.01"
20 #define HPI_LIB_VER HPI_VERSION_CONSTRUCTOR(10, 2, 0)
23 #define HPI_VERSION_CONSTRUCTOR(maj, min, r) ((maj << 16) + (min << 8) + r)
26 #define HPI_VER_MAJOR(v) ((int)(v >> 16))
28 #define HPI_VER_MINOR(v) ((int)((v >> 8) & 0xFF))
30 #define HPI_VER_RELEASE(v) ((int)(v & 0xFF))