export.h 300 B

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