vita-toolchain-public.h (278B)
1 #ifndef VITA_TOOLCHAIN_PUBLIC 2 #ifndef VITA_TOOLCHAIN_SHARED 3 #define VITA_TOOLCHAIN_PUBLIC 4 #elif (defined(_WIN32) || defined(__CYGWIN__)) 5 #define VITA_TOOLCHAIN_PUBLIC __declspec(dllexport) 6 #else 7 #define VITA_TOOLCHAIN_PUBLIC __attribute__((visibility("default"))) 8 #endif 9 #endif