Skip to content

Latest commit

 

History

History
65 lines (54 loc) · 1.68 KB

File metadata and controls

65 lines (54 loc) · 1.68 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Specifies the breakpoint condition style for pending and bound breakpoints.
BP_COND_STYLE
11/04/2016
reference
BP_COND_STYLE
BP_COND_STYLE enumeration
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

BP_COND_STYLE

Specifies the breakpoint condition style for pending and bound breakpoints.

Syntax

public enum enum_BP_COND_STYLE {
    BP_COND_NONE         = 0x0000,
    BP_COND_WHEN_TRUE    = 0x0001,
    BP_COND_WHEN_CHANGED = 0x0002
};
enum enum_BP_COND_STYLE {
    BP_COND_NONE         = 0x0000,
    BP_COND_WHEN_TRUE    = 0x0001,
    BP_COND_WHEN_CHANGED = 0x0002
};
typedef DWORD BP_COND_STYLE;

Fields

BP_COND_NONE
Fires the breakpoint when the breakpoint's position is reached. No breakpoint condition specified.

BP_COND_WHEN_TRUE
Fires the breakpoint only when the conditional expression associated with the breakpoint evaluates to true.

BP_COND_WHEN_CHANGED
Fires the breakpoint only when the value of the conditional expression associated with the breakpoint has changed from its previous evaluation.

Remarks

Used for the styleCondition member of the BP_CONDITION structure.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also