Function Call Tracer (with function names) using _penter / p_exit hooks.
Uses *.map files from compiled programs to get function names
In C++ best example on all of github
Add these files to an x32 c++ project ( for x64 you need to move the inline assembly in an asm file )
compile with /Gh flag
at some point ( after main ? ) enable logging with function : StartLogFunctionEntrances()
requires "/Gh" compile flag !!!
to add exit tracking, add /GH !!!
you need to disable incremental linking for function name lookup to work