1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/***************************************************************************/
/* HERE DEFINE THE PROJECT SPECIFIC PUBLIC MACROS */
/* These are only in effect in a setting that doesn't use configure */
/***************************************************************************/
/* Version number of project */
#define IPOPT_VERSION "3.14.16"
/* Major Version number of project */
#define IPOPT_VERSION_MAJOR 3
/* Minor Version number of project */
#define IPOPT_VERSION_MINOR 14
/* Release Version number of project */
#define IPOPT_VERSION_RELEASE 16
/* Define to the C type corresponding to Fortran INTEGER
* @deprecated Use ipindex instead.
*/
#ifndef IPOPT_FORTRAN_INTEGER_TYPE
#define IPOPT_FORTRAN_INTEGER_TYPE ipindex
#endif
#ifndef IPOPTLIB_EXPORT
#if defined(_WIN32) && defined(DLL_EXPORT)
#define IPOPTLIB_EXPORT __declspec(dllimport)
#else
#define IPOPTLIB_EXPORT
#endif
#endif
#ifndef SIPOPTLIB_EXPORT
#if defined(_WIN32) && defined(DLL_EXPORT)
#define DIPOPTLIB_EXPORT __declspec(dllimport)
#else
#define DIPOPTLIB_EXPORT
#endif
#endif