Windows API question
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
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
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement