Share via


BP_RES_DATA_FLAGS

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

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

Syntax

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

Members

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

Enumerations
BP_RESOLUTION_DATA