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.

10 lines
207 B
C

#if defined _WIN32 || defined __CYGWIN__
# ifdef __OBJC_RUNTIME_INTERNAL__
# define PUBLIC __attribute__((dllexport))
# else
# define PUBLIC __attribute__((dllimport))
# endif
#else
# define PUBLIC
#endif