I'm writing an extension which adds some functionality to the native code debugger. One of the things I would like to be able to detect is when the process I'm debugging spawns a child process. Visual Studio obviously knows when this happens,
because Windows reports it to Visual Studio when VS calls
WaitForDebugEvent in its core debug loop. Does Visual Studio provide a notification of this back to the extension in any way?
↧