1
2/***************************************************************************/
3/* HERE DEFINE THE PROJECT SPECIFIC PUBLIC MACROS */
4/* These are only in effect in a setting that doesn't use configure */
5/***************************************************************************/
6
7/* Version number of project */
8#define COINUTILS_VERSION "2.8"
9
10/* Major Version number of project */
11#define COINUTILS_VERSION_MAJOR 2
12
13/* Minor Version number of project */
14#define COINUTILS_VERSION_MINOR 8
15
16/* Release Version number of project */
17#define COINUTILS_VERSION_RELEASE 9999
18
19/* Use 64-bit integer type provided by Microsoft */
20#ifdef _MSC_VER
21# define COIN_INT64_T __int64
22# define COIN_UINT64_T unsigned __int64
23 /* Define to integer type capturing pointer */
24# define COIN_INTPTR_T intptr_t
25#else
26# define COIN_INT64_T long long
27# define COIN_UINT64_T unsigned long long
28# define COIN_INTPTR_T int*
29#endif
30