Read a ``ULONG64`` at ``addr``
(self, addr)
| 330 | return struct.unpack("<I", self.read_memory(addr, sizeof_dword))[0] |
| 331 | |
| 332 | def read_qword(self, addr): |
| 333 | """Read a ``ULONG64`` at ``addr``""" |
| 334 | sizeof_qword = sizeof(ULONG64) |
| 335 | return struct.unpack("<Q", self.read_memory(addr, sizeof_qword))[0] |
| 336 | |
| 337 | def read_ptr(self, addr): |
| 338 | """Read a ``PTR`` at ``addr``""" |
no test coverage detected