123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef EPID_COMMON_EPIDDEFS_H_
- #define EPID_COMMON_EPIDDEFS_H_
- #if defined(SHARED)
- #if defined(_WIN32)
- #ifdef EXPORT_EPID_APIS
- #define EPID_API __declspec(dllexport)
- #else
- #define EPID_API __declspec(dllimport)
- #endif
- #else
- #if __GNUC__ >= 4
- #define EPID_API __attribute__((visibility("default")))
- #else
- #define EPID_API
- #endif
- #endif
- #else
- #define EPID_API
- #endif
- #endif
|