1 /***********************************************************************/ 2 /* Open Visualization Data Explorer */ 3 /* (C) Copyright IBM Corp. 1989,1999 */ 4 /* ALL RIGHTS RESERVED */ 5 /* This code licensed under the */ 6 /* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ 7 /***********************************************************************/ 8 9 #include <dxconfig.h> 10 11 12 13 14 #ifndef _IBMVersion_h 15 #define _IBMVersion_h 16 17 18 /* 19 * Create a single number from the 3 version numbers that can be used to 20 * do integer compares to determine relative versions. 21 * 22 */ 23 #define VERSION_NUMBER(maj,min,mic) (((maj) << 16) + ((min) << 8) + (mic)) 24 25 26 /* 27 * Define this while code is in development, but undef it before a release. 28 */ 29 #if 0 30 #define BETA_VERSION 31 #endif 32 33 /* The DX release version number. */ 34 #define IBM_MAJOR_VERSION DXD_VERSION 35 #define IBM_MINOR_VERSION DXD_RELEASE 36 #define IBM_MICRO_VERSION DXD_MODIFICATION 37 38 39 #endif /* _IBMVersion_h */ 40