Go to the documentation of this file. 9 #ifndef MSGPACK_PREDEF_VERSION_NUMBER_H 10 #define MSGPACK_PREDEF_VERSION_NUMBER_H 36 #define MSGPACK_VERSION_NUMBER(major,minor,patch) \ 37 ( (((major)%100)*10000000) + (((minor)%100)*100000) + ((patch)%100000) ) 39 #define MSGPACK_VERSION_NUMBER_MAX \ 40 MSGPACK_VERSION_NUMBER(99,99,99999) 42 #define MSGPACK_VERSION_NUMBER_ZERO \ 43 MSGPACK_VERSION_NUMBER(0,0,0) 45 #define MSGPACK_VERSION_NUMBER_MIN \ 46 MSGPACK_VERSION_NUMBER(0,0,1) 48 #define MSGPACK_VERSION_NUMBER_AVAILABLE \ 49 MSGPACK_VERSION_NUMBER_MIN 51 #define MSGPACK_VERSION_NUMBER_NOT_AVAILABLE \ 52 MSGPACK_VERSION_NUMBER_ZERO