Using XCode with lldb
, I can add stop-hook
like this
target stop-hook add
expr -- (int) printf(...., some_function_in_app())
DONE
which will run everytime a breakpoint is caught.
How can I achieve this in Visual Studio
?
Using XCode with lldb
, I can add stop-hook
like this
target stop-hook add
expr -- (int) printf(...., some_function_in_app())
DONE
which will run everytime a breakpoint is caught.
How can I achieve this in Visual Studio
?