Reputation: 2311
I know that there are some programs to trace Win32 calls in a live process. But I need some code to put into C++ code so that I can dump Win32 calls side by side with my current program trace. Has someone done this before?
Upvotes: 2
Views: 1810
Reputation: 11
You can try and study Microsoft Detours library to hook Windows API calls: http://research.microsoft.com/en-us/projects/detours/.
Upvotes: 1