dbgBreakpointType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicatesthe type or state of a breakpoint.
public enum class dbgBreakpointType
public enum class dbgBreakpointType
enum dbgBreakpointType
[System.Runtime.InteropServices.Guid("75607DDE-2B43-11D3-B88B-00C04F79E479")]
public enum dbgBreakpointType
[<System.Runtime.InteropServices.Guid("75607DDE-2B43-11D3-B88B-00C04F79E479")>]
type dbgBreakpointType =
Public Enum dbgBreakpointType
- Inheritance
-
dbgBreakpointType
- Attributes
Fields
Name | Value | Description |
---|---|---|
dbgBreakpointTypePending | 1 | Breakpoint indicated a set of points in code. |
dbgBreakpointTypeBound | 2 | Breakpoint is at a specific point in code. |
Remarks
A pending breakpoint indicates a general place or condition for a break to occur, such as when function is encountered. A bound breakpoint is associated with each specific instance of the pending breakpoint. Each bound breakpoint is associated to a pending breakpoint.