#ifndef MAKE_VER typedef unsigned short _VER_T; #define MAKE_VER(a, b) ( (_VER_T)(((unsigned char)(((_VER_T)(a)) & 0xff)) | ((_VER_T)((unsigned char)(((_VER_T)(b)) & 0xff))) << 8) ) #endif
a+b*256