Skip to content

Latest commit

 

History

History
73 lines (61 loc) · 2.54 KB

bp-resolution-info.md

File metadata and controls

73 lines (61 loc) · 2.54 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Describes the bound breakpoint information for either a code breakpoint or a data breakpoint.
BP_RESOLUTION_INFO
11/04/2016
reference
BP_RESOLUTION_INFO
BP_RESOLUTION_INFO structure
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

BP_RESOLUTION_INFO

Describes the bound breakpoint information for either a code breakpoint or a data breakpoint.

Syntax

public struct BP_RESOLUTION_INFO {
    public uint                   dwFields;
    public BP_RESOLUTION_LOCATION bpResLocation;
    public IDebugProgram2         pProgram;
    public IDebugThread2          pThread;
};
typedef struct _BP_RESOLUTION_INFO {
    BPRESI_FIELDS          dwFields;
    BP_RESOLUTION_LOCATION bpResLocation;
    IDebugProgram2*        pProgram;
    IDebugThread2*         pThread;
} BP_RESOLUTION_INFO;

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