(
module: &wasmtime_module_t,
out: &mut wasm_exporttype_vec_t,
)
| 156 | |
| 157 | #[unsafe(no_mangle)] |
| 158 | pub extern "C" fn wasmtime_module_exports( |
| 159 | module: &wasmtime_module_t, |
| 160 | out: &mut wasm_exporttype_vec_t, |
| 161 | ) { |
| 162 | fill_exports(&module.module, out); |
| 163 | } |
| 164 | |
| 165 | #[unsafe(no_mangle)] |
| 166 | pub extern "C" fn wasmtime_module_imports( |