3#define WASM_EXPORT extern "C" __attribute__((visibility("default"))) __attribute__((annotate("wasm_export")))
4#define ASYNC_WASM_EXPORT \
5 extern "C" __attribute__((visibility("default"))) __attribute__((annotate("async_wasm_export")))
7#define WASM_EXPORT extern "C" __attribute__((visibility("default")))
8#define ASYNC_WASM_EXPORT extern "C" __attribute__((visibility("default")))
13#define WASM_IMPORT(name) extern "C" __attribute__((import_module("env"), import_name(name)))
15#define WASM_IMPORT(name) extern "C"