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
450 B
19 lines
450 B
#pragma once |
|
#if !defined(EXPORTDEF_H) |
|
#define EXPORTDEF_H |
|
#if _WIN32 || __CYGWIN__ |
|
#if __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
|
|
|