[][src]Function memflow_win32_ffi::win32::kernel::kernel_process_info_list

#[no_mangle]pub unsafe extern "C" fn kernel_process_info_list(
    kernel: &'static mut Kernel,
    buffer: *mut &'static mut Win32ProcessInfo,
    max_size: usize
) -> usize

Retrieve a list of processes

This will fill buffer with a list of win32 process information. These processes will need to be individually freed with process_info_free

Safety

buffer must be a valid that can contain at least max_size references to Win32ProcessInfo.