How to get process's base address with MODULEENTRY32?
问题 I'm looking to do something in this example: Python - How to get the start/base address of a process?. I'm having the same issue as the person in that topic, in that the pointers cheat engine provides is in reference to the base address of the process itself. I've looked around and it looks like the best solution is to use ctypes and the MODULEENTRY32 to store snapshots of processes and analyze their modBaseAddr. Here is my current code import os.path, ctypes, ctypes.wintypes from ctypes