| 7 | #include <vector> |
| 8 | |
| 9 | typedef struct _NULL_MEMORY |
| 10 | { |
| 11 | void* buffer_address; |
| 12 | UINT_PTR address; |
| 13 | ULONGLONG size; |
| 14 | ULONG pid; |
| 15 | BOOLEAN write; |
| 16 | BOOLEAN read; |
| 17 | BOOLEAN req_base; |
| 18 | BOOLEAN draw_box; |
| 19 | int r, g, b, x, y, w, h, t; |
| 20 | void* output; |
| 21 | const char* module_name; |
| 22 | ULONG64 base_address; |
| 23 | }NULL_MEMORY; |
| 24 | |
| 25 | uintptr_t base_address = 0; |
| 26 | std::uint32_t process_id = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected