|
2 | 2 | title: "BP_RESOLUTION_INFO | Microsoft Docs"
|
3 | 3 | ms.date: "11/04/2016"
|
4 | 4 | ms.topic: "conceptual"
|
5 |
| -f1_keywords: |
| 5 | +f1_keywords: |
6 | 6 | - "BP_RESOLUTION_INFO"
|
7 |
| -helpviewer_keywords: |
| 7 | +helpviewer_keywords: |
8 | 8 | - "BP_RESOLUTION_INFO structure"
|
9 | 9 | ms.assetid: ba0c162a-61e8-4a0b-811f-4c1d8a5d82f0
|
10 | 10 | author: "gregvanl"
|
11 | 11 | ms.author: "gregvanl"
|
12 | 12 | manager: jillfra
|
13 |
| -ms.workload: |
| 13 | +ms.workload: |
14 | 14 | - "vssdk"
|
15 | 15 | ---
|
16 | 16 | # 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