Read a ``DWORD`` at ``addr``
(self, addr)
| 325 | return struct.unpack("<H", self.read_memory(addr, sizeof_short))[0] |
| 326 | |
| 327 | def read_dword(self, addr): |
| 328 | """Read a ``DWORD`` at ``addr``""" |
| 329 | sizeof_dword = sizeof(DWORD) |
| 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``""" |
no test coverage detected