Function mem_map::exports::get_extern[][src]

#[no_mangle]
pub unsafe extern "C" fn get_extern(
    id: u64,
    pid: u32,
    target: *mut c_void,
    target_size: size_t
) -> u32
Expand description

get_extern - Saves a data from another process into buffer.

Returns non zero value if failed.
See the error enum to find out more.

Arguments

  • id: u64 - Map key.
  • pid: u32 - Target process’ ID.
  • target: *mut c_void - Pointer to a buffer that receives the data.
  • target_size: size_t - Size of the buffer.