MCPcopy Create free account
hub / github.com/Spuckwaffel/Kernel-Thread-Driver / readlocal

Function readlocal

Driver/utilities.h:112–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110
111template< typename T >
112T readlocal(uintptr_t address)
113{
114 T buffer{};
115 read_virtual_memory(process::pid, process::process, (void*)address, &buffer, sizeof(T));
116 return buffer;
117}
118
119void read(uintptr_t from, uintptr_t to, ULONGLONG size)
120{

Callers

nothing calls this directly

Calls 1

read_virtual_memoryFunction · 0.85

Tested by

no test coverage detected