MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / wasm_module_exports

Function wasm_module_exports

crates/c-api/src/module.rs:81–83  ·  view source on GitHub ↗
(module: &wasm_module_t, out: &mut wasm_exporttype_vec_t)

Source from the content-addressed store, hash-verified

79
80#[unsafe(no_mangle)]
81pub extern "C" fn wasm_module_exports(module: &wasm_module_t, out: &mut wasm_exporttype_vec_t) {
82 fill_exports(&module.module, out);
83}
84
85#[unsafe(no_mangle)]
86pub extern "C" fn wasm_module_imports(module: &wasm_module_t, out: &mut wasm_importtype_vec_t) {

Callers

nothing calls this directly

Calls 1

fill_exportsFunction · 0.85

Tested by

no test coverage detected