News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests
NB: Posting URL's See here: Posted URL Change

Main Menu

Hierarchical process on windows

Started by LiaoMi, December 24, 2015, 07:37:15 AM

Previous topic - Next topic

LiaoMi

Hallo,

how to list a hierarchical process tree on windows? How to build a relationship between the process ?! As an example we can take the Process Explorer. We need to build a linked list?

Thanks!

qWord

You could try to use CreateToolhelp32Snapshot with Process32First/Next and then extact the information from the PROCESSENTRY32 structures to create the graph.
MREAL macros - when you need floating point arithmetic while assembling!

LiaoMi

Quote from: qWord on December 24, 2015, 07:53:48 AM
You could try to use CreateToolhelp32Snapshot with Process32First/Next and then extact the information from the PROCESSENTRY32 structures to create the graph.

Hallo,

Thanks! That's what I was looking for!