Advertisement

Windows API question

Started by April 14, 2001 02:22 AM
1 comment, last by McAnthrax 23 years, 10 months ago
I need to list all open processes (i am making a basic cheat util). I have seen plenty of programs do this, any idea how? By proc id, or window handle, or window caption -- any of these would be fine. Thanks. -McThrax
Have a look at Window Functions from the MSDN.
Especially look at EnumWindows() (You get an handle to the window, then you can use GetWindowText() and stuff like that to get more info about the window).



- Goblineye Entertainment
The road to success is always under construction
Goblineye EntertainmentThe road to success is always under construction
Advertisement
List all processes?

Try CreateToolHelp32Snapshot. Mind this only works on Windows9x/ME.

Are you wanting to search the memory of a process too? If so, look into VirtualQueryEx and ReadProcessMemory.


Anything else? Email me at macdeath@gamehacking.com



MacDeath

This topic is closed to new replies.

Advertisement