Skip to content

Commit 57fa4a9

Browse files
authored
Delete unnecessary spaces
1 parent 16e5e7f commit 57fa4a9

File tree

1 file changed

+55
-55
lines changed

1 file changed

+55
-55
lines changed

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

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -2,67 +2,67 @@
22
title: "BP_RESOLUTION_INFO | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
f1_keywords:
5+
f1_keywords:
66
- "BP_RESOLUTION_INFO"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "BP_RESOLUTION_INFO structure"
99
ms.assetid: ba0c162a-61e8-4a0b-811f-4c1d8a5d82f0
1010
author: "gregvanl"
1111
ms.author: "gregvanl"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "vssdk"
1515
---
1616
# BP_RESOLUTION_INFO
17-
Describes the bound breakpoint information for either a code breakpoint or a data breakpoint.
18-
19-
## Syntax
20-
21-
```cpp
22-
typedef struct _BP_RESOLUTION_INFO { 
23-
BPRESI_FIELDS dwFields;
24-
BP_RESOLUTION_LOCATION bpResLocation;
25-
IDebugProgram2* pProgram;
26-
IDebugThread2* pThread;
27-
} BP_RESOLUTION_INFO;
28-
```
29-
30-
```csharp
31-
public struct BP_RESOLUTION_INFO { 
32-
public uint dwFields;
33-
public BP_RESOLUTION_LOCATION bpResLocation;
34-
public IDebugProgram2 pProgram;
35-
public IDebugThread2 pThread;
36-
};
37-
```
38-
39-
## Members
40-
`dwFields`
41-
A collection of flags from the [BPRESI_FIELDS](../../../extensibility/debugger/reference/bpresi-fields.md) enumerations that specifies which fields are filled out.
42-
43-
`bpResLocation`
44-
The [BP_RESOLUTION_LOCATION](../../../extensibility/debugger/reference/bp-resolution-location.md) structure that specifies the location of the breakpoint in code or data.
45-
46-
`pProgram`
47-
The [IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md) object that represents the application in which the breakpoint error occurred.
48-
49-
`pThread`
50-
The [IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md) object that represents the thread in which the application that contains the breakpoint error is running.
51-
52-
## Remarks
53-
This structure is returned by [GetResolutionInfo](../../../extensibility/debugger/reference/idebugbreakpointresolution2-getresolutioninfo.md).
54-
55-
## Requirements
56-
Header: msdbg.h
57-
58-
Namespace: Microsoft.VisualStudio.Debugger.Interop
59-
60-
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
61-
62-
## See Also
63-
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
64-
[GetResolutionInfo](../../../extensibility/debugger/reference/idebugbreakpointresolution2-getresolutioninfo.md)
65-
[BPRESI_FIELDS](../../../extensibility/debugger/reference/bpresi-fields.md)
66-
[BP_RESOLUTION_LOCATION](../../../extensibility/debugger/reference/bp-resolution-location.md)
67-
[IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md)
68-
[IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md)
17+
Describes the bound breakpoint information for either a code breakpoint or a data breakpoint.
18+
19+
## Syntax
20+
21+
```cpp
22+
typedef struct _BP_RESOLUTION_INFO {
23+
BPRESI_FIELDS dwFields;
24+
BP_RESOLUTION_LOCATION bpResLocation;
25+
IDebugProgram2* pProgram;
26+
IDebugThread2* pThread;
27+
} BP_RESOLUTION_INFO;
28+
```
29+
30+
```csharp
31+
public struct BP_RESOLUTION_INFO {
32+
public uint dwFields;
33+
public BP_RESOLUTION_LOCATION bpResLocation;
34+
public IDebugProgram2 pProgram;
35+
public IDebugThread2 pThread;
36+
};
37+
```
38+
39+
## Members
40+
`dwFields`
41+
A collection of flags from the [BPRESI_FIELDS](../../../extensibility/debugger/reference/bpresi-fields.md) enumerations that specifies which fields are filled out.
42+
43+
`bpResLocation`
44+
The [BP_RESOLUTION_LOCATION](../../../extensibility/debugger/reference/bp-resolution-location.md) structure that specifies the location of the breakpoint in code or data.
45+
46+
`pProgram`
47+
The [IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md) object that represents the application in which the breakpoint error occurred.
48+
49+
`pThread`
50+
The [IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md) object that represents the thread in which the application that contains the breakpoint error is running.
51+
52+
## Remarks
53+
This structure is returned by [GetResolutionInfo](../../../extensibility/debugger/reference/idebugbreakpointresolution2-getresolutioninfo.md).
54+
55+
## Requirements
56+
Header: msdbg.h
57+
58+
Namespace: Microsoft.VisualStudio.Debugger.Interop
59+
60+
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
61+
62+
## See Also
63+
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
64+
[GetResolutionInfo](../../../extensibility/debugger/reference/idebugbreakpointresolution2-getresolutioninfo.md)
65+
[BPRESI_FIELDS](../../../extensibility/debugger/reference/bpresi-fields.md)
66+
[BP_RESOLUTION_LOCATION](../../../extensibility/debugger/reference/bp-resolution-location.md)
67+
[IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md)
68+
[IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md)

0 commit comments

Comments
 (0)