| 2620 | } |
| 2621 | |
| 2622 | WASMEDGE_CAPI_EXPORT void WasmEdge_ModuleInstanceAddFunction( |
| 2623 | WasmEdge_ModuleInstanceContext *Cxt, const WasmEdge_String Name, |
| 2624 | WasmEdge_FunctionInstanceContext *FuncCxt) noexcept { |
| 2625 | if (Cxt && FuncCxt) { |
| 2626 | fromModCxt(Cxt)->addHostFunc( |
| 2627 | genStrView(Name), |
| 2628 | std::unique_ptr<WasmEdge::Runtime::Instance::FunctionInstance>( |
| 2629 | fromFuncCxt(FuncCxt))); |
| 2630 | } |
| 2631 | } |
| 2632 | |
| 2633 | WASMEDGE_CAPI_EXPORT void WasmEdge_ModuleInstanceAddTable( |
| 2634 | WasmEdge_ModuleInstanceContext *Cxt, const WasmEdge_String Name, |