cuteCAT
cuteCAT

Reputation: 2311

Tracing Win32 API calls in C++ program

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

Answers (1)

reirisen
reirisen

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

Related Questions