I am investigating GDI leaks issue in one of our smart-client application. I am looking for a tool (like tasklist) to get the GDI objects associated to a process. I can see the GDI objects in taskmanager, But my requirement to capture it periodically somewhere. For example in a text file.
|
|
|
|
|
|
|
It should be quite straightforward to write a program to periodically log the number of GDI handles in use by a process, using the GetGuiResources API function. |
||
|
|
|
|
The totally free Process Explorer ( http://www.sysinternals.com ) allows you to graphically inspect this and a zillion other aspects related to running processes. Add "GDI Objects" to the columns to display and you're off and running. NOTE: Microsoft acquired their tools and I believe Mark Russinovich now works for Microsoft. Sysinternals tools don't typically require any installation other than to copy them to somewhere convenient and should be in your toolbox if they aren't already. |
||
|
|
|
|
GetGuiResources API is a good starting point, and if you need frequent snapshots and know which handles of which type are actually in use, give this library a try. |
||
|
|
