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
223 B
C

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