Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 1.27 KB

bp-res-data-flags.md

File metadata and controls

55 lines (46 loc) · 1.27 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Specifies whether the data breakpoint is being emulated or implemented in hardware.
BP_RES_DATA_FLAGS
11/04/2016
reference
BP_RES_DATA_FLAGS
BP_RES_DATA_FLAGS enumeration
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

BP_RES_DATA_FLAGS

Specifies whether the data breakpoint is being emulated or implemented in hardware.

Syntax

public enum enum_BP_RES_DATA_FLAGS {
    BP_RES_DATA_EMULATED = 0x0001
};
enum enum_BP_RES_DATA_FLAGS {
    BP_RES_DATA_EMULATED = 0x0001
};
typedef DWORD BP_RES_DATA_FLAGS;

Fields

BP_RES_DATA_EMULATED
Specifies that the data breakpoint is being emulated.

Remarks

Used for the dwFlags member of the BP_RESOLUTION_DATA structure.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also