I need my Visual Studio extension to react to debugging events. I've registered a IDebugEventCallback2
and I'm receiving events, but all I get for each event is an opaque IDebugEvent2
and a Guid, many of which are not only undocumented but don't appear anywhere on the web (or in my registry).
My specific requirement at the moment is to know when the process is Continued - ie. the user has hit Continue, Run to cursor, etc. What Guid should I be looking for?
Or is there some other event family that I should be subscribing to?
(More generally, is there some way I'm missing to find out about the events that are delivered to my IDebugEventCallback2::Event
callback, when many of them don't appear in MSDN or anywhere else? Thanks!)