Skip to content

Commit d7fbece

Browse files
authored
Merge pull request #2494 from changeworld/patch-27
Delete unnecessary spaces
2 parents bc6b214 + cf7ecc1 commit d7fbece

File tree

1 file changed

+112
-112
lines changed

1 file changed

+112
-112
lines changed

docs/extensibility/debugger/reference/bpreqi-fields90.md

Lines changed: 112 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -2,123 +2,123 @@
22
title: "BPREQI_FIELDS90 | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
helpviewer_keywords:
5+
helpviewer_keywords:
66
- "BPREQI_FIELDS90 enumeration"
77
ms.assetid: bf6f7efc-39f2-46a2-906d-c3647bf89995
88
author: "gregvanl"
99
ms.author: "gregvanl"
1010
manager: jillfra
11-
ms.workload:
11+
ms.workload:
1212
- "vssdk"
1313
---
1414
# BPREQI_FIELDS90
15-
Enumerates the valid values that specify the information to be retrieved about a breakpoint request. This enumeration extends the [BPREQI_FIELDS](../../../extensibility/debugger/reference/bpreqi-fields.md) enumeration.
16-
17-
## Syntax
18-
19-
```cpp
20-
enum enum_BPREQI_FIELDS90
21-
{
22-
// VS 8.0 values
23-
BPREQI90_BPLOCATION = 0x0001,
24-
BPREQI90_LANGUAGE = 0x0002,
25-
BPREQI90_PROGRAM = 0x0004,
26-
BPREQI90_PROGRAMNAME = 0x0008,
27-
BPREQI90_THREAD = 0x0010,
28-
BPREQI90_THREADNAME = 0x0020,
29-
BPREQI90_PASSCOUNT = 0x0040,
30-
BPREQI90_CONDITION = 0x0080,
31-
BPREQI90_FLAGS = 0x0100,
32-
BPREQI90_ALLOLDFIELDS = 0x01ff,
33-
BPREQI90_VENDOR = 0x0200,
34-
BPREQI90_CONSTRAINT = 0x0400,
35-
BPREQI90_TRACEPOINT = 0x0800,
36-
37-
// Values added in VS 9.0
38-
BPREQI90_MACROTRACEPOINT = 0x1000,
39-
40-
BPREQI90_ALLFIELDS = 0xffff
41-
};
42-
typedef DWORD BPREQI_FIELDS90;
43-
```
44-
45-
```csharp
46-
public enum enum_BPREQI_FIELDS90
47-
{
48-
// VS 8.0 values
49-
BPREQI90_BPLOCATION = 0x0001,
50-
BPREQI90_LANGUAGE = 0x0002,
51-
BPREQI90_PROGRAM = 0x0004,
52-
BPREQI90_PROGRAMNAME = 0x0008,
53-
BPREQI90_THREAD = 0x0010,
54-
BPREQI90_THREADNAME = 0x0020,
55-
BPREQI90_PASSCOUNT = 0x0040,
56-
BPREQI90_CONDITION = 0x0080,
57-
BPREQI90_FLAGS = 0x0100,
58-
BPREQI90_ALLOLDFIELDS = 0x01ff,
59-
BPREQI90_VENDOR = 0x0200,
60-
BPREQI90_CONSTRAINT = 0x0400,
61-
BPREQI90_TRACEPOINT = 0x0800,
62-
63-
// Values added in VS 9.0
64-
BPREQI90_MACROTRACEPOINT = 0x1000,
65-
66-
BPREQI90_ALLFIELDS = 0xffff
67-
};
68-
```
69-
70-
#### Parameters
71-
BPREQI90_BPLOCATION
72-
Initialize or use the `bpLocation` (breakpoint location) field of the [BP_REQUEST_INFO](../../../extensibility/debugger/reference/bp-request-info.md) or [BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md) structure.
73-
74-
BPREQI90_LANGUAGE
75-
Initialize or use the `guidLanguage` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
76-
77-
BPREQI90_PROGRAM
78-
Initialize or use the `pProgram` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
79-
80-
BPREQI90_PROGRAMNAME
81-
Initialize or use the `bstrProgramName` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
82-
83-
BPREQI90_THREAD
84-
Initialize or use the `pThread` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
85-
86-
BPREQI90_THREADNAME
87-
Initialize or use the `bstrThreadName` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
88-
89-
BPREQI90_PASSCOUNT
90-
Initialize or use the `bpPassCount` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
91-
92-
BPREQI90_CONDITION
93-
Initialize or use the `bpCondition` (breakpoint condition) field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
94-
95-
BPREQI90_FLAGS
96-
Initialize or use the `dwFlags` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
97-
98-
BPREQI90_ALLOLDFIELDS
99-
Initialize or use all fields for the of the `BP_REQUEST_INFO` structure.
100-
101-
BPREQI90_VENDOR
102-
Initialize or use the `guidVendor` field of `BP_REQUEST_INFO2` structure.
103-
104-
BPREQI90_CONSTRAINT
105-
Initialize or use the `bstrConstraint` field of `BP_REQUEST_INFO2` structure.
106-
107-
BPREQI90_TRACEPOINT
108-
Initialize or use the `bstrTracepoint` field of `BP_REQUEST_INFO2` structure.
109-
110-
BPREQI90_MACROTRACEPOINT
111-
Initialize or use the `bstrMacroTracepoint` field of `BP_REQUEST_INFO2` structure. BPREQI_ALLFIELDS does not include this field.
112-
113-
BPREQI90_ALLFIELDS
114-
Specifies all fields for the `BP_REQUEST_INFO2` structure.
115-
116-
## Requirements
117-
Header: Msdbg90.h
118-
119-
Namespace: Microsoft.VisualStudio.Debugger.Interop
120-
121-
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
122-
123-
## See Also
124-
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
15+
Enumerates the valid values that specify the information to be retrieved about a breakpoint request. This enumeration extends the [BPREQI_FIELDS](../../../extensibility/debugger/reference/bpreqi-fields.md) enumeration.
16+
17+
## Syntax
18+
19+
```cpp
20+
enum enum_BPREQI_FIELDS90
21+
{
22+
// VS 8.0 values
23+
BPREQI90_BPLOCATION = 0x0001,
24+
BPREQI90_LANGUAGE = 0x0002,
25+
BPREQI90_PROGRAM = 0x0004,
26+
BPREQI90_PROGRAMNAME = 0x0008,
27+
BPREQI90_THREAD = 0x0010,
28+
BPREQI90_THREADNAME = 0x0020,
29+
BPREQI90_PASSCOUNT = 0x0040,
30+
BPREQI90_CONDITION = 0x0080,
31+
BPREQI90_FLAGS = 0x0100,
32+
BPREQI90_ALLOLDFIELDS = 0x01ff,
33+
BPREQI90_VENDOR = 0x0200,
34+
BPREQI90_CONSTRAINT = 0x0400,
35+
BPREQI90_TRACEPOINT = 0x0800,
36+
37+
// Values added in VS 9.0
38+
BPREQI90_MACROTRACEPOINT = 0x1000,
39+
40+
BPREQI90_ALLFIELDS = 0xffff
41+
};
42+
typedef DWORD BPREQI_FIELDS90;
43+
```
44+
45+
```csharp
46+
public enum enum_BPREQI_FIELDS90
47+
{
48+
// VS 8.0 values
49+
BPREQI90_BPLOCATION = 0x0001,
50+
BPREQI90_LANGUAGE = 0x0002,
51+
BPREQI90_PROGRAM = 0x0004,
52+
BPREQI90_PROGRAMNAME = 0x0008,
53+
BPREQI90_THREAD = 0x0010,
54+
BPREQI90_THREADNAME = 0x0020,
55+
BPREQI90_PASSCOUNT = 0x0040,
56+
BPREQI90_CONDITION = 0x0080,
57+
BPREQI90_FLAGS = 0x0100,
58+
BPREQI90_ALLOLDFIELDS = 0x01ff,
59+
BPREQI90_VENDOR = 0x0200,
60+
BPREQI90_CONSTRAINT = 0x0400,
61+
BPREQI90_TRACEPOINT = 0x0800,
62+
63+
// Values added in VS 9.0
64+
BPREQI90_MACROTRACEPOINT = 0x1000,
65+
66+
BPREQI90_ALLFIELDS = 0xffff
67+
};
68+
```
69+
70+
#### Parameters
71+
BPREQI90_BPLOCATION
72+
Initialize or use the `bpLocation` (breakpoint location) field of the [BP_REQUEST_INFO](../../../extensibility/debugger/reference/bp-request-info.md) or [BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md) structure.
73+
74+
BPREQI90_LANGUAGE
75+
Initialize or use the `guidLanguage` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
76+
77+
BPREQI90_PROGRAM
78+
Initialize or use the `pProgram` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
79+
80+
BPREQI90_PROGRAMNAME
81+
Initialize or use the `bstrProgramName` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
82+
83+
BPREQI90_THREAD
84+
Initialize or use the `pThread` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
85+
86+
BPREQI90_THREADNAME
87+
Initialize or use the `bstrThreadName` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
88+
89+
BPREQI90_PASSCOUNT
90+
Initialize or use the `bpPassCount` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
91+
92+
BPREQI90_CONDITION
93+
Initialize or use the `bpCondition` (breakpoint condition) field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
94+
95+
BPREQI90_FLAGS
96+
Initialize or use the `dwFlags` field of the `BP_REQUEST_INFO` or `BP_REQUEST_INFO2` structure.
97+
98+
BPREQI90_ALLOLDFIELDS
99+
Initialize or use all fields for the of the `BP_REQUEST_INFO` structure.
100+
101+
BPREQI90_VENDOR
102+
Initialize or use the `guidVendor` field of `BP_REQUEST_INFO2` structure.
103+
104+
BPREQI90_CONSTRAINT
105+
Initialize or use the `bstrConstraint` field of `BP_REQUEST_INFO2` structure.
106+
107+
BPREQI90_TRACEPOINT
108+
Initialize or use the `bstrTracepoint` field of `BP_REQUEST_INFO2` structure.
109+
110+
BPREQI90_MACROTRACEPOINT
111+
Initialize or use the `bstrMacroTracepoint` field of `BP_REQUEST_INFO2` structure. BPREQI_ALLFIELDS does not include this field.
112+
113+
BPREQI90_ALLFIELDS
114+
Specifies all fields for the `BP_REQUEST_INFO2` structure.
115+
116+
## Requirements
117+
Header: Msdbg90.h
118+
119+
Namespace: Microsoft.VisualStudio.Debugger.Interop
120+
121+
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
122+
123+
## See Also
124+
[Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)

0 commit comments

Comments
 (0)