Ejemplo n.º 1
0
 private static void Processes_ProcessAdded(object sender, ProcessCollectionChangedEventArgs e)
 {
     e.Process.PostDebugEvent += PostDebugEventHandler;
 }
Ejemplo n.º 2
0
        void Processes_ProcessAdded(object sender, ProcessCollectionChangedEventArgs e)
        {
            // now that a process has been added, lets add a onBreakpoint event to it
            setOnBreakpointEvent();

            // and let others that we have a new debug sessions
            O2Messages.raiseO2MDbgAction(IM_O2MdbgActions.startDebugSession);
        }