BP_RESOLUTION_INFO
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Describes the bound breakpoint information for either a code breakpoint or a data breakpoint.
Syntax
typedef struct _BP_RESOLUTION_INFO {
BPRESI_FIELDS dwFields;
BP_RESOLUTION_LOCATION bpResLocation;
IDebugProgram2* pProgram;
IDebugThread2* pThread;
} BP_RESOLUTION_INFO;
public struct BP_RESOLUTION_INFO {
public uint dwFields;
public BP_RESOLUTION_LOCATION bpResLocation;
public IDebugProgram2 pProgram;
public IDebugThread2 pThread;
};
Members
dwFields
A collection of flags from the BPRESI_FIELDS enumerations that specifies which fields are filled out.
bpResLocation
The BP_RESOLUTION_LOCATION structure that specifies the location of the breakpoint in code or data.
pProgram
The IDebugProgram2 object that represents the application in which the breakpoint error occurred.
pThread
The IDebugThread2 object that represents the thread in which the application that contains the breakpoint error is running.
Remarks
This structure is returned by GetResolutionInfo.
Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
See Also
Structures and Unions
GetResolutionInfo
BPRESI_FIELDS
BP_RESOLUTION_LOCATION
IDebugProgram2
IDebugThread2