Ejemplo n.º 1
0
 public int AdviseDebuggerEvents(IVsDebuggerEvents pSink, out uint pdwCookie)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public int AdviseDebuggerEvents(IVsDebuggerEvents pSink, out uint pdwCookie) {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public int AdviseDebuggerEvents(IVsDebuggerEvents pSink, out uint pdwCookie)
 {
     pdwCookie         = _cookie++;
     _sinks[pdwCookie] = pSink;
     return(VSConstants.S_OK);
 }
Ejemplo n.º 4
0
 int IVsDebugger.AdviseDebuggerEvents(IVsDebuggerEvents pSink, out uint pdwCookie)
 {
     //NYI
     pdwCookie = 2;
     return(VSConstants.S_OK);
 }
Ejemplo n.º 5
0
 public int AdviseDebuggerEvents(IVsDebuggerEvents pSink, out uint pdwCookie) {
     pdwCookie = _cookie++;
     _sinks[pdwCookie] = pSink;
     return VSConstants.S_OK;
 }