@@ -20,37 +20,37 @@ Contains the information required to implement a breakpoint, including vendor GU
20
20
21
21
``` cpp
22
22
typedef struct _ BP_REQUEST_INFO2 {
23
- BPREQI_FIELDS dwFields;
24
- GUID guidLanguage;
25
- BP_LOCATION bpLocation;
26
- IDebugProgram2* pProgram;
27
- BSTR bstrProgramName;
28
- IDebugThread2* pThread;
29
- BSTR bstrThreadName;
30
- BP_CONDITION bpCondition;
31
- BP_PASSCOUNT bpPassCount;
32
- BP_FLAGS dwFlags;
33
- GUID guidVendor;
34
- BSTR bstrConstraint;
35
- BSTR bstrTracepoint;
23
+ BPREQI_FIELDS dwFields;
24
+ GUID guidLanguage;
25
+ BP_LOCATION bpLocation;
26
+ IDebugProgram2* pProgram;
27
+ BSTR bstrProgramName;
28
+ IDebugThread2* pThread;
29
+ BSTR bstrThreadName;
30
+ BP_CONDITION bpCondition;
31
+ BP_PASSCOUNT bpPassCount;
32
+ BP_FLAGS dwFlags;
33
+ GUID guidVendor;
34
+ BSTR bstrConstraint;
35
+ BSTR bstrTracepoint;
36
36
} BP_REQUEST_INFO2;
37
37
```
38
38
39
39
```csharp
40
40
public struct BP_REQUEST_INFO2 {
41
- public uint dwFields;
42
- public Guid guidLanguage;
43
- public BP_LOCATION bpLocation;
44
- public IDebugProgram2 pProgram;
45
- public string bstrProgramName;
46
- public IDebugThread2 pThread;
47
- public string bstrThreadName;
48
- public BP_CONDITION bpCondition;
49
- public BP_PASSCOUNT bpPassCount;
50
- public uint dwFlags;
51
- public Guid guidVendor;
52
- public string bstrConstraint;
53
- public string bstrTracepoint;
41
+ public uint dwFields;
42
+ public Guid guidLanguage;
43
+ public BP_LOCATION bpLocation;
44
+ public IDebugProgram2 pProgram;
45
+ public string bstrProgramName;
46
+ public IDebugThread2 pThread;
47
+ public string bstrThreadName;
48
+ public BP_CONDITION bpCondition;
49
+ public BP_PASSCOUNT bpPassCount;
50
+ public uint dwFlags;
51
+ public Guid guidVendor;
52
+ public string bstrConstraint;
53
+ public string bstrTracepoint;
54
54
};
55
55
```
56
56
0 commit comments