| 2520 | } |
| 2521 | |
| 2522 | WASMEDGE_CAPI_EXPORT WasmEdge_GlobalInstanceContext * |
| 2523 | WasmEdge_ModuleInstanceFindGlobal(const WasmEdge_ModuleInstanceContext *Cxt, |
| 2524 | const WasmEdge_String Name) noexcept { |
| 2525 | if (Cxt) { |
| 2526 | return toGlobCxt(fromModCxt(Cxt)->findGlobalExports(genStrView(Name))); |
| 2527 | } |
| 2528 | return nullptr; |
| 2529 | } |
| 2530 | |
| 2531 | WASMEDGE_CAPI_EXPORT uint32_t WasmEdge_ModuleInstanceListFunctionLength( |
| 2532 | const WasmEdge_ModuleInstanceContext *Cxt) noexcept { |