pub unsafe extern "C" fn svcWriteProcessMemory(
    debug: Handle,
    buffer: *const c_void,
    addr: u32_,
    size: u32_
) -> Result
Expand description

Writes to a debugged process’s memory.

§Arguments

  • debug - Debug handle of the process.
  • buffer - Buffer to write data from.
  • addr - Address to write to.
  • size - Size of the memory to write.