@@ -20,31 +20,31 @@ Contains the information required to implement a breakpoint.
20
20
21
21
``` cpp
22
22
typedef struct _ BP_REQUEST_INFO {
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;
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
33
} BP_REQUEST_INFO;
34
34
```
35
35
36
36
```csharp
37
37
public struct BP_REQUEST_INFO {
38
- public uint dwFields;
39
- public Guid guidLanguage;
40
- public BP_LOCATION bpLocation;
41
- public IDebugProgram2 pProgram;
42
- public string bstrProgramName;
43
- public IDebugThread2 pThread;
44
- public string bstrThreadName;
45
- public BP_CONDITION bpCondition;
46
- public BP_PASSCOUNT bpPassCount;
47
- public uint dwFlags;
38
+ public uint dwFields;
39
+ public Guid guidLanguage;
40
+ public BP_LOCATION bpLocation;
41
+ public IDebugProgram2 pProgram;
42
+ public string bstrProgramName;
43
+ public IDebugThread2 pThread;
44
+ public string bstrThreadName;
45
+ public BP_CONDITION bpCondition;
46
+ public BP_PASSCOUNT bpPassCount;
47
+ public uint dwFlags;
48
48
};
49
49
```
50
50
0 commit comments