MCPcopy Create free account
hub / github.com/Inori/GPCS4 / RemoteRead

Method RemoteRead

3rdParty/tinydbr/windows/executor.cpp:534–546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

532}
533
534void Executor::RemoteRead(void* address, void* buffer, size_t size)
535{
536 SIZE_T size_read;
537 if (!ReadProcessMemory(
538 self_handle,
539 address,
540 buffer,
541 size,
542 &size_read))
543 {
544 FATAL("Error reading target memory\n");
545 }
546}
547
548void Executor::RemoteProtect(void* address, size_t size, MemoryProtection protect)
549{

Callers 2

OnModuleInstrumentedMethod · 0.80
HandleBreakpointMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected