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