| 2236 | } |
| 2237 | |
| 2238 | WASMEDGE_CAPI_EXPORT const WasmEdge_ModuleInstanceContext * |
| 2239 | WasmEdge_StoreFindModule(const WasmEdge_StoreContext *Cxt, |
| 2240 | const WasmEdge_String Name) noexcept { |
| 2241 | if (Cxt) { |
| 2242 | return toModCxt(fromStoreCxt(Cxt)->findModule(genStrView(Name))); |
| 2243 | } |
| 2244 | return nullptr; |
| 2245 | } |
| 2246 | |
| 2247 | WASMEDGE_CAPI_EXPORT uint32_t |
| 2248 | WasmEdge_StoreListModuleLength(const WasmEdge_StoreContext *Cxt) noexcept { |