Skip to content

Commit bfc4d04

Browse files
authored
Fix indent
1 parent 58f5115 commit bfc4d04

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

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

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,31 @@ Contains the information required to implement a breakpoint.
2020

2121
```cpp
2222
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;
3333
} BP_REQUEST_INFO;
3434
```
3535
3636
```csharp
3737
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;
4848
};
4949
```
5050

0 commit comments

Comments
 (0)