Indicates the state of a breakpoint.
typedef enum tagBREAKPOINT_STATE { BREAKPOINT_DELETED = 0, BREAKPOINT_DISABLED = 1, BREAKPOINT_ENABLED = 2 } BREAKPOINT_STATE;
Member | Description |
---|---|
BREAKPOINT_DELETED | The breakpoint no longer exists, but there are still references to it. |
BREAKPOINT_DISABLED | The breakpoint exists but is disabled. |
BREAKPOINT_ENABLED | The breakpoint exists and is enabled. |