[][src]Function memflow_win32_ffi::win32::process::process_module_info

#[no_mangle]pub unsafe extern "C" fn process_module_info(
    process: &mut Win32Process,
    name: *const c_char
) -> Option<&'static mut Win32ModuleInfo>

Lookup a module

This will search for a module called name, and return a reference to a newly allocated Win32ModuleInfo object, if a module was found (null otherwise).

The reference later needs to be freed with module_info_free

Safety

process must be a valid Win32Process pointer. name must be a valid null terminated string.