mirror of
https://github.com/darlinghq/darling-libobjc2.git
synced 2025-02-25 11:10:56 +00:00
14 lines
305 B
C
14 lines
305 B
C
#if defined _WIN32 || defined __CYGWIN__
|
|
# define PUBLIC __attribute__((dllexport))
|
|
# define PRIVATE
|
|
#else
|
|
# define PUBLIC __attribute__ ((visibility("default")))
|
|
# define PRIVATE __attribute__ ((visibility("hidden")))
|
|
#endif
|
|
#ifdef NO_LEGACY
|
|
# define LEGACY PRIVATE
|
|
#else
|
|
# define LEGACY PUBLIC
|
|
#endif
|
|
|