| 2484 | } |
| 2485 | |
| 2486 | WASMEDGE_CAPI_EXPORT WasmEdge_FunctionInstanceContext * |
| 2487 | WasmEdge_ModuleInstanceFindFunction(const WasmEdge_ModuleInstanceContext *Cxt, |
| 2488 | const WasmEdge_String Name) noexcept { |
| 2489 | if (Cxt) { |
| 2490 | return toFuncCxt(fromModCxt(Cxt)->findFuncExports(genStrView(Name))); |
| 2491 | } |
| 2492 | return nullptr; |
| 2493 | } |
| 2494 | |
| 2495 | WASMEDGE_CAPI_EXPORT WasmEdge_TableInstanceContext * |
| 2496 | WasmEdge_ModuleInstanceFindTable(const WasmEdge_ModuleInstanceContext *Cxt, |