mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-13 08:27:57 +00:00
19 lines
470 B
C
19 lines
470 B
C
|
#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
|