File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
docs/extensibility/debugger/reference Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -20,19 +20,19 @@ Describes the bound breakpoint information for either a code breakpoint or a dat
20
20
21
21
``` cpp
22
22
typedef struct _BP_RESOLUTION_INFO {
23
- BPRESI_FIELDS dwFields;
24
- BP_RESOLUTION_LOCATION bpResLocation;
25
- IDebugProgram2* pProgram;
26
- IDebugThread2* pThread;
23
+ BPRESI_FIELDS dwFields;
24
+ BP_RESOLUTION_LOCATION bpResLocation;
25
+ IDebugProgram2* pProgram;
26
+ IDebugThread2* pThread;
27
27
} BP_RESOLUTION_INFO;
28
28
```
29
29
30
30
```csharp
31
31
public struct BP_RESOLUTION_INFO {
32
- public uint dwFields;
33
- public BP_RESOLUTION_LOCATION bpResLocation;
34
- public IDebugProgram2 pProgram;
35
- public IDebugThread2 pThread;
32
+ public uint dwFields;
33
+ public BP_RESOLUTION_LOCATION bpResLocation;
34
+ public IDebugProgram2 pProgram;
35
+ public IDebugThread2 pThread;
36
36
};
37
37
```
38
38
You can’t perform that action at this time.
0 commit comments