Mosi
Mosi

Reputation: 1258

Sniffing function calling between application executable file and 3d party library

I have an application which is written with MFC. The application uses a c library (there are .h, .dll and .lib files in the lib folder).

Can I sniff the function calling of .exe with the library? I want to know which function of the .h files are called.

More info: the library is D2XX and of course the source code of the application or the debug mode of the application is not available.

Upvotes: 1

Views: 642

Answers (1)

milianw
milianw

Reputation: 5336

You could try out API Monitor, which seems to support tracing of custom DLL library calls: http://www.rohitab.com/discuss/topic/37421-monitor-custom-dll/

Upvotes: 2

Related Questions