pocketpy/src/export.h
blueloveTH 3b66008e50 ...
2023-05-24 19:01:47 +08:00

16 lines
333 B
C

#ifndef PK_EXPORT
#ifdef _WIN32
#define PK_EXPORT __declspec(dllexport)
#elif __APPLE__
#define PK_EXPORT __attribute__((visibility("default"))) __attribute__((used))
#elif __EMSCRIPTEN__
#include <emscripten.h>
#define PK_EXPORT EMSCRIPTEN_KEEPALIVE
#else
#define PK_EXPORT
#endif
#define PK_LEGACY_EXPORT PK_EXPORT inline
#endif