profiling - Profiler that logs arguments of dll -


Is there a profiler (or similar program) that will call the function call and logic sent to a DLL? By logic I mean data sent to function; For example, I have


dll

  int myAdd (int a, int b) to say. Return (A + B)  

main

  int a = myAdd (1, 2) int b = myAdd (3,4) int c = myAdd (5,6)  

I want to log in to the profiler: myAdd was called with (1,2) with myAdd (3,4) Was called now (5,6)

Brian

What is this in Linux? I probably googling for some "ltrace for window" yields ...


Comments