Example #1
0
        // Creates a pending breakpoint in the engine. A pending breakpoint is contains all the information needed to bind a breakpoint to
        // a location in the debuggee.
        int IDebugEngine2.CreatePendingBreakpoint(IDebugBreakpointRequest2 pBpRequest, out IDebugPendingBreakpoint2 ppPendingBp)
        {
            Debug.WriteLine("Creating pending break point");
            Debug.Assert(_breakpointManager != null);

            _breakpointManager.CreatePendingBreakpoint(pBpRequest, out ppPendingBp);

            return(VSConstants.S_OK);
        }