Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.87 KB

idebugpendingbreakpoint2-bind.md

File metadata and controls

50 lines (43 loc) · 1.87 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Binds this pending breakpoint to one or more code locations.
IDebugPendingBreakpoint2::Bind
11/04/2016
reference
IDebugPendingBreakpoint2::Bind
Bind method
IDebugPendingBreakpoint2::Bind method
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IDebugPendingBreakpoint2::Bind

Binds this pending breakpoint to one or more code locations.

Syntax

int Bind();
HRESULT Bindvoid 
);

Return Value

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

Remarks

When this method is called, a debug engine (DE) should attempt to bind this pending breakpoint to all code locations that match.

After this method returns, the caller needs to wait for events indicating that the pending breakpoint has bound or is in error before assuming that calls to the EnumBoundBreakpoints or EnumErrorBreakpoints.methods will enumerate all bound or error breakpoints, respectively.

See also