Go to the documentation of this file.
8 #ifndef MSGPACK_PREDEF_VERSION_NUMBER_H
9 #define MSGPACK_PREDEF_VERSION_NUMBER_H
35 #define MSGPACK_VERSION_NUMBER(major,minor,patch) \
36 ( (((major)%100)*10000000) + (((minor)%100)*100000) + ((patch)%100000) )
38 #define MSGPACK_VERSION_NUMBER_MAX \
39 MSGPACK_VERSION_NUMBER(99,99,99999)
41 #define MSGPACK_VERSION_NUMBER_ZERO \
42 MSGPACK_VERSION_NUMBER(0,0,0)
44 #define MSGPACK_VERSION_NUMBER_MIN \
45 MSGPACK_VERSION_NUMBER(0,0,1)
47 #define MSGPACK_VERSION_NUMBER_AVAILABLE \
48 MSGPACK_VERSION_NUMBER_MIN
50 #define MSGPACK_VERSION_NUMBER_NOT_AVAILABLE \
51 MSGPACK_VERSION_NUMBER_ZERO