export.h 333 B

12345678910111213141516
  1. #ifndef PK_EXPORT
  2. #ifdef _WIN32
  3. #define PK_EXPORT __declspec(dllexport)
  4. #elif __APPLE__
  5. #define PK_EXPORT __attribute__((visibility("default"))) __attribute__((used))
  6. #elif __EMSCRIPTEN__
  7. #include <emscripten.h>
  8. #define PK_EXPORT EMSCRIPTEN_KEEPALIVE
  9. #else
  10. #define PK_EXPORT
  11. #endif
  12. #define PK_LEGACY_EXPORT PK_EXPORT inline
  13. #endif