pub unsafe extern "C" fn svcMapProcessMemory(
    process: Handle,
    destAddress: u32_,
    size: u32_
) -> Result
Expand description

Maps a block of process memory, starting from address 0x00100000.

§Arguments

  • process - Handle of the process.
  • destAddress - Address of the block of memory to map, in the current (destination) process.
  • size - Size of the block of memory to map (truncated to a multiple of 0x1000 bytes).