You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * \brief Defines automatic instantiations of a #wasm_module_t in this linker. * * \param linker the linker the module is being added to * \param name the name of the module within the linker * \param module the module that's being instantiated * * \return An error if the module could not be instantiated or added or `NULL` * on success. * * This function automatically handles [Commands and * Reactors](https://github.com/WebAssembly/WASI/blob/master/design/application-abi.md#current-unstable-abi) * instantiation and initialization. * * For more information see the [Rust * documentation](https://bytecodealliance.github.io/wasmtime/api/wasmtime/struct.Linker.html#method.module). */WASM_API_EXTERNownwasmtime_error_t*wasmtime_linker_module(
constwasmtime_linker_t*linker,
constwasm_name_t*name,
constwasm_module_t*module
);
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: