Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 1.39 KB

idebugpendingbreakpoint2-getbreakpointrequest.md

File metadata and controls

48 lines (42 loc) · 1.39 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Gets the breakpoint request that was used to create this pending breakpoint.
IDebugPendingBreakpoint2::GetBreakpointRequest
11/04/2016
reference
IDebugPendingBreakpoint2::GetBreakpointRequest
IDebugPendingBreakpoint2::GetBreakpointRequest method
GetBreakpointRequest method
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IDebugPendingBreakpoint2::GetBreakpointRequest

Gets the breakpoint request that was used to create this pending breakpoint.

Syntax

int GetBreakpointRequest( 
   out IDebugBreakpointRequest2 ppBPRequest
);
HRESULT GetBreakpointRequest( 
   IDebugBreakpointRequest2** ppBPRequest
);

Parameters

ppBPRequest
[out] Returns an IDebugBreakpointRequest2 object representing the breakpoint request that was used to create this pending breakpoint.

Return Value

If successful, returns S_OK; otherwise, returns an error code. Returns E_BP_DELETED if the breakpoint has been deleted.

See also