|
2 | 2 | title: "BP_FLAGS90 | Microsoft Docs"
|
3 | 3 | ms.date: "11/04/2016"
|
4 | 4 | ms.topic: "conceptual"
|
5 |
| -helpviewer_keywords: |
| 5 | +helpviewer_keywords: |
6 | 6 | - "BP_FLAGS90 enumeration"
|
7 | 7 | ms.assetid: 3e5a06c5-fb30-4b8a-b2d5-4a0570fc80bd
|
8 | 8 | author: "gregvanl"
|
9 | 9 | ms.author: "gregvanl"
|
10 | 10 | manager: jillfra
|
11 |
| -ms.workload: |
| 11 | +ms.workload: |
12 | 12 | - "vssdk"
|
13 | 13 | ---
|
14 | 14 | # BP_FLAGS90
|
15 |
| -Enumerates valid values for optional flags. The optional flags may be used to specify additional information when you set a breakpoint. This enumeration extends the [BP_FLAGS](../../../extensibility/debugger/reference/bp-flags.md) enumeration. |
16 |
| - |
17 |
| -## Syntax |
18 |
| - |
19 |
| -```cpp |
20 |
| -enum enum_BP_FLAGS90 |
21 |
| -{ |
22 |
| - // VS 8.0 values |
23 |
| - BP90_FLAG_NONE = 0x0000, |
24 |
| - BP90_FLAG_MAP_DOCPOSITION = 0x0001, |
25 |
| - BP90_FLAG_DONT_STOP = 0x0002, |
26 |
| - |
27 |
| - // Values added in VS 9.0 |
28 |
| - BP90_FLAG_TRACEPOINT_CONTINUE = 0x0004, |
29 |
| -}; |
30 |
| -typedef DWORD BP_FLAGS90; |
31 |
| -``` |
32 |
| - |
33 |
| -```csharp |
34 |
| -public enum enum_BP_FLAGS90 |
35 |
| -{ |
36 |
| - // VS 8.0 values |
37 |
| - BP90_FLAG_NONE = 0x0000, |
38 |
| - BP90_FLAG_MAP_DOCPOSITION = 0x0001, |
39 |
| - BP90_FLAG_DONT_STOP = 0x0002, |
40 |
| - |
41 |
| - // Values added in VS 9.0 |
42 |
| - BP90_FLAG_TRACEPOINT_CONTINUE = 0x0004, |
43 |
| -}; |
44 |
| -``` |
45 |
| - |
46 |
| -#### Parameters |
47 |
| - BP90_FLAG_NONE |
48 |
| - Specifies no breakpoint flag. |
49 |
| - |
50 |
| - BP90_FLAG_MAP_DOCPOSITION |
51 |
| - Specifies that the debug engine (DE) should map the breakpoint by using the document position. This is applicable only to breakpoints set in script-oriented source files such as Active Server Pages (ASP). |
52 |
| - |
53 |
| - BP90_FLAG_DONT_STOP |
54 |
| - Specifies that the breakpoint should be processed by the debug engine, but that the debug engine ultimately should not stop there; that is, an [IDebugBreakpointEvent2](../../../extensibility/debugger/reference/idebugbreakpointevent2.md) event object should not be sent. This flag is designed to be used primarily with trace points. |
55 |
| - |
56 |
| - BP90_FLAG_TRACEPOINT_CONTINUE |
57 |
| - Used by the native debug engine to determine whether the stepping state should be cleared. It differs from BP90_FLAG_DONT_STOP because BP90_FLAG_DONT_STOP is not set if the trace point executes a macro. |
58 |
| - |
59 |
| -## Requirements |
60 |
| - Header: Msdbg90.h |
61 |
| - |
62 |
| - Namespace: Microsoft.VisualStudio.Debugger.Interop |
63 |
| - |
64 |
| - Assembly: Microsoft.VisualStudio.Debugger.Interop.dll |
65 |
| - |
66 |
| -## See Also |
67 |
| - [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md) |
| 15 | +Enumerates valid values for optional flags. The optional flags may be used to specify additional information when you set a breakpoint. This enumeration extends the [BP_FLAGS](../../../extensibility/debugger/reference/bp-flags.md) enumeration. |
| 16 | + |
| 17 | +## Syntax |
| 18 | + |
| 19 | +```cpp |
| 20 | +enum enum_BP_FLAGS90 |
| 21 | +{ |
| 22 | + // VS 8.0 values |
| 23 | + BP90_FLAG_NONE = 0x0000, |
| 24 | + BP90_FLAG_MAP_DOCPOSITION = 0x0001, |
| 25 | + BP90_FLAG_DONT_STOP = 0x0002, |
| 26 | + |
| 27 | + // Values added in VS 9.0 |
| 28 | + BP90_FLAG_TRACEPOINT_CONTINUE = 0x0004, |
| 29 | +}; |
| 30 | +typedef DWORD BP_FLAGS90; |
| 31 | +``` |
| 32 | + |
| 33 | +```csharp |
| 34 | +public enum enum_BP_FLAGS90 |
| 35 | +{ |
| 36 | + // VS 8.0 values |
| 37 | + BP90_FLAG_NONE = 0x0000, |
| 38 | + BP90_FLAG_MAP_DOCPOSITION = 0x0001, |
| 39 | + BP90_FLAG_DONT_STOP = 0x0002, |
| 40 | + |
| 41 | + // Values added in VS 9.0 |
| 42 | + BP90_FLAG_TRACEPOINT_CONTINUE = 0x0004, |
| 43 | +}; |
| 44 | +``` |
| 45 | + |
| 46 | +#### Parameters |
| 47 | +BP90_FLAG_NONE |
| 48 | +Specifies no breakpoint flag. |
| 49 | + |
| 50 | +BP90_FLAG_MAP_DOCPOSITION |
| 51 | +Specifies that the debug engine (DE) should map the breakpoint by using the document position. This is applicable only to breakpoints set in script-oriented source files such as Active Server Pages (ASP). |
| 52 | + |
| 53 | +BP90_FLAG_DONT_STOP |
| 54 | +Specifies that the breakpoint should be processed by the debug engine, but that the debug engine ultimately should not stop there; that is, an [IDebugBreakpointEvent2](../../../extensibility/debugger/reference/idebugbreakpointevent2.md) event object should not be sent. This flag is designed to be used primarily with trace points. |
| 55 | + |
| 56 | +BP90_FLAG_TRACEPOINT_CONTINUE |
| 57 | +Used by the native debug engine to determine whether the stepping state should be cleared. It differs from BP90_FLAG_DONT_STOP because BP90_FLAG_DONT_STOP is not set if the trace point executes a macro. |
| 58 | + |
| 59 | +## Requirements |
| 60 | +Header: Msdbg90.h |
| 61 | + |
| 62 | +Namespace: Microsoft.VisualStudio.Debugger.Interop |
| 63 | + |
| 64 | +Assembly: Microsoft.VisualStudio.Debugger.Interop.dll |
| 65 | + |
| 66 | +## See Also |
| 67 | +[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md) |
0 commit comments