pub unsafe extern "C" fn WasmEdge_ExecutorRegisterImport(
    Cxt: *mut WasmEdge_ExecutorContext,
    StoreCxt: *mut WasmEdge_StoreContext,
    ImportCxt: *const WasmEdge_ModuleInstanceContext
) -> WasmEdge_Result
Expand description

Register a module instance into a store with exporting its module name.

Register an existing module into the store with its module name. After calling this function, the module instance is registered into the store, and the other modules can import the instances for linking when instantiation. Developers should guarantee the life cycle of this registered module instance, or the error will occur when in execution after the module instance destroyed if it has been imported by other modules.

\param Cxt the WasmEdge_ExecutorContext to instantiate the module. \param StoreCxt the WasmEdge_StoreContext to store the instantiated module. \param ImportCxt the WasmEdge_ModuleInstanceContext to register.

\returns WasmEdge_Result. Call WasmEdge_ResultGetMessage for the error message.