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.
18 lines
470 B
18 lines
470 B
#ifndef EXPORTDEF_H |
|
#define EXPORTDEF_H |
|
#if defined _WIN32 || defined __CYGWIN__ |
|
#ifdef __GNUC__ |
|
#define EXPORT __attribute__ ((dllexport)) |
|
#else |
|
#define EXPORT __declspec(dllexport) // Note: actually gcc seems to also supports this syntax. |
|
#endif |
|
#else |
|
#if __GNUC__ >= 4 |
|
#define EXPORT __attribute__ ((visibility ("default"))) |
|
#else |
|
#define EXPORT |
|
#endif |
|
#endif |
|
#define DLLEXPORT EXPORT |
|
#define _DLLEXPORT EXPORT |
|
#endif // EXPORTDEF_H
|
|
|