IDebugEventContextCallbacks::Breakpoint method (dbgeng.h)
A breakpoint event is generated when a breakpoint exception is received and it can be mapped to an existing breakpoint. The callback method is given a reference to the breakpoint and should release it when it is done with it.
Refer to IDebugEventCallbacks::Breakpoint for parameter description and additional information.
Syntax
HRESULT Breakpoint(
[in] PDEBUG_BREAKPOINT2 Bp,
[in] PVOID Context,
[in] ULONG ContextSize
);
Parameters
[in] Bp
Specifies a pointer to the IDebugBreakpoint object corresponding to the breakpoint that was triggered.
[in] Context
Specifies the DEBUG_EVENT_CONTEXT structure as the “context” parameter of each event callback. The context structure contains additional information about the debug event that occurred.
[in] ContextSize
Specifies the size of the buffer Context.
Requirements
Requirement | Value |
---|---|
Target Platform | Desktop |
Header | dbgeng.h (include dbgeng.h) |