1 using Mono
.Debugging
.Client
;
3 namespace Mono
.Debugging
.Backend
.Mdb
5 public interface IDebuggerController
7 void RegisterDebugger (IDebuggerServer debugger
);
11 //FIXME: better naming for event callbacks
12 void OnMainProcessCreated(int process_id
);
14 void OnTargetEvent (TargetEventArgs args
);
16 void OnTargetOutput (bool isStderr
, string text
);
18 void OnDebuggerOutput (bool isStderr
, string text
);
20 bool OnCustomBreakpointAction (string actionId
, object handle
);
22 void UpdateBreakpoint (object handle
, int count
, string lastTrace
);