(self, address)
| 800 | return ctypes.c_uint8.from_buffer(self.minidump, location).value |
| 801 | |
| 802 | def ReadU32(self, address): |
| 803 | location = self.FindLocation(address) |
| 804 | return ctypes.c_uint32.from_buffer(self.minidump, location).value |
| 805 | |
| 806 | def ReadU64(self, address): |
| 807 | location = self.FindLocation(address) |
no test coverage detected