Skip to content

Commit f14b9d7

Browse files
authored
Fix indent
1 parent 330166d commit f14b9d7

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

docs/extensibility/debugger/reference/bp-request-info2.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -20,37 +20,37 @@ Contains the information required to implement a breakpoint, including vendor GU
2020

2121
```cpp
2222
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;
3636
} BP_REQUEST_INFO2;
3737
```
3838
3939
```csharp
4040
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;
5454
};
5555
```
5656

0 commit comments

Comments
 (0)