You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
428 B
19 lines
428 B
#ifndef ISOEXDLLEXPORT
|
|
#ifdef WIN32
|
|
#ifdef ISOEXDLL
|
|
#ifdef USEISOEX
|
|
#define ISOEXDLLEXPORT __declspec(dllimport)
|
|
#define ISOEXDLLEXPORTONLY
|
|
#else
|
|
#define ISOEXDLLEXPORT __declspec(dllexport)
|
|
#define ISOEXDLLEXPORTONLY __declspec(dllexport)
|
|
#endif
|
|
#else
|
|
#define ISOEXDLLEXPORT
|
|
#define ISOEXDLLEXPORTONLY
|
|
#endif
|
|
#else
|
|
#define ISOEXDLLEXPORT
|
|
#define ISOEXDLLEXPORTONLY
|
|
#endif
|
|
#endif
|
|
|