(
module: &wasmtime_module_t,
start: &mut *const u8,
end: &mut *const u8,
)
| 192 | |
| 193 | #[unsafe(no_mangle)] |
| 194 | pub extern "C" fn wasmtime_module_image_range( |
| 195 | module: &wasmtime_module_t, |
| 196 | start: &mut *const u8, |
| 197 | end: &mut *const u8, |
| 198 | ) { |
| 199 | let range = module.module.image_range(); |
| 200 | *start = range.start; |
| 201 | *end = range.end; |
| 202 | } |
| 203 | |
| 204 | #[unsafe(no_mangle)] |
| 205 | pub unsafe extern "C" fn wasmtime_module_deserialize( |
nothing calls this directly
no test coverage detected