| 2715 | } |
| 2716 | |
| 2717 | WASMEDGE_CAPI_EXPORT extern const void *WasmEdge_FunctionInstanceGetData( |
| 2718 | const WasmEdge_FunctionInstanceContext *Cxt) noexcept { |
| 2719 | if (Cxt) { |
| 2720 | return reinterpret_cast<CAPIHostFunc *>(&fromFuncCxt(Cxt)->getHostFunc()) |
| 2721 | ->getData(); |
| 2722 | } |
| 2723 | return nullptr; |
| 2724 | } |
| 2725 | |
| 2726 | WASMEDGE_CAPI_EXPORT void WasmEdge_FunctionInstanceDelete( |
| 2727 | WasmEdge_FunctionInstanceContext *Cxt) noexcept { |