2015-07-21 21:35:56 -07:00
|
|
|
#ifndef ISAAC_DEFINES_H
|
|
|
|
#define ISAAC_DEFINES_H
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(_MSC_VER)
|
|
|
|
#ifdef ISAAC_DLL
|
2015-07-21 22:02:36 -07:00
|
|
|
#define ISAACAPI __declspec(dllexport)
|
2015-07-21 21:35:56 -07:00
|
|
|
#else
|
2015-07-21 22:02:36 -07:00
|
|
|
#define ISAACAPI __declspec(dllimport)
|
2015-07-21 21:35:56 -07:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define ISAACAPI __attribute__((visibility("default")))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|