Skip to content

Commit aa2dba8

Browse files
authored
Merge pull request #2489 from changeworld/patch-22
Delete unnecessary spaces
2 parents e07c178 + 8053036 commit aa2dba8

File tree

1 file changed

+55
-55
lines changed

1 file changed

+55
-55
lines changed

docs/extensibility/debugger/reference/bp-flags90.md

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -2,66 +2,66 @@
22
title: "BP_FLAGS90 | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
helpviewer_keywords:
5+
helpviewer_keywords:
66
- "BP_FLAGS90 enumeration"
77
ms.assetid: 3e5a06c5-fb30-4b8a-b2d5-4a0570fc80bd
88
author: "gregvanl"
99
ms.author: "gregvanl"
1010
manager: jillfra
11-
ms.workload:
11+
ms.workload:
1212
- "vssdk"
1313
---
1414
# 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

Comments
 (0)