BP_TYPE

指定断点是否在代码位置,即数据位置或者是另一个断点。

enum enum_BP_TYPE { 
   BPT_NONE    = 0x0000,
   BPT_CODE    = 0x0001,
   BPT_DATA    = 0x0002,
   BPT_SPECIAL = 0x0003
};
typedef DWORD BP_TYPE;
public enum enum_BP_TYPE { 
   BPT_NONE    = 0x0000,
   BPT_CODE    = 0x0001,
   BPT_DATA    = 0x0002,
   BPT_SPECIAL = 0x0003
};

成员

  • BPT_NONE
    未指定断点类型。

  • BPT_CODE
    指定代码断点。

  • BPT_DATA
    指定数据断点。

  • BPT_SPECIAL
    指定不是代码和数据类型的断点。 此类型被否决,因此不应使用。

备注

参数形式传递给 IDebugBreakpointResolution2:: GetBreakpointTypeIDebugErrorBreakpointResolution2:: GetBreakpointType 方法。

要求

标题:msdbg.h

命名空间:Microsoft.VisualStudio.Debugger.Interop

程序集:Microsoft.VisualStudio.Debugger.Interop.dll

请参见

参考

枚举 (Visual Studio 调试)

IDebugBreakpointResolution2:: GetBreakpointType

IDebugErrorBreakpointResolution2:: GetBreakpointType