| 2502 | } |
| 2503 | |
| 2504 | WASMEDGE_CAPI_EXPORT WasmEdge_MemoryInstanceContext * |
| 2505 | WasmEdge_ModuleInstanceFindMemory(const WasmEdge_ModuleInstanceContext *Cxt, |
| 2506 | const WasmEdge_String Name) noexcept { |
| 2507 | if (Cxt) { |
| 2508 | return toMemCxt(fromModCxt(Cxt)->findMemoryExports(genStrView(Name))); |
| 2509 | } |
| 2510 | return nullptr; |
| 2511 | } |
| 2512 | |
| 2513 | WASMEDGE_CAPI_EXPORT WasmEdge_TagInstanceContext * |
| 2514 | WasmEdge_ModuleInstanceFindTag(const WasmEdge_ModuleInstanceContext *Cxt, |