You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found myself often needed to enumerate modules/threads of a process, something you do with CreateToolhelp32Snapshot. Its current usage is a bit chunky with needing to first call xxxFirst followed with xxxNext. Everytime I just roll up a helper function to make the code more readable. As a result, a generic helper function for it would be great.
The text was updated successfully, but these errors were encountered:
Found myself often needed to enumerate modules/threads of a process, something you do with
CreateToolhelp32Snapshot
. Its current usage is a bit chunky with needing to first callxxxFirst
followed withxxxNext
. Everytime I just roll up a helper function to make the code more readable. As a result, a generic helper function for it would be great.The text was updated successfully, but these errors were encountered: