| 110 | |
| 111 | template< typename T > |
| 112 | T 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 | |
| 119 | void read(uintptr_t from, uintptr_t to, ULONGLONG size) |
| 120 | { |
nothing calls this directly
no test coverage detected