You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
|