Reads a pointer value from the memory of the process. @see: L{peek_pointer} @type lpBaseAddress: int @param lpBaseAddress: Memory address to begin reading. @rtype: int @return: Pointer value read from the process memory. @raise WindowsEr
(self, lpBaseAddress)
| 1756 | self.__write_c_type(lpBaseAddress, "@d", unpackedValue) |
| 1757 | |
| 1758 | def read_pointer(self, lpBaseAddress): |
| 1759 | """ |
| 1760 | Reads a pointer value from the memory of the process. |
| 1761 | |
| 1762 | @see: L{peek_pointer} |
| 1763 | |
| 1764 | @type lpBaseAddress: int |
| 1765 | @param lpBaseAddress: Memory address to begin reading. |
| 1766 | |
| 1767 | @rtype: int |
| 1768 | @return: Pointer value read from the process memory. |
| 1769 | |
| 1770 | @raise WindowsError: On error an exception is raised. |
| 1771 | """ |
| 1772 | return self.__read_c_type(lpBaseAddress, "@P", ctypes.c_void_p) |
| 1773 | |
| 1774 | def write_pointer(self, lpBaseAddress, unpackedValue): |
| 1775 | """ |
no test coverage detected