Skip to content

Latest commit

 

History

History
55 lines (47 loc) · 1.76 KB

idebugboundbreakpoint2-setpasscount.md

File metadata and controls

55 lines (47 loc) · 1.76 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Sets or changes the pass count associated with this bound breakpoint.
IDebugBoundBreakpoint2::SetPassCount
11/04/2016
reference
IDebugBoundBreakpoint2::SetPassCount
SetPassCount method
IDebugBoundBreakpoint2::SetPassCount method
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IDebugBoundBreakpoint2::SetPassCount

Sets or changes the pass count associated with this bound breakpoint.

Syntax

int SetPassCount( 
   BP_PASSCOUNT bpPassCount
);
HRESULT SetPassCount( 
   BP_PASSCOUNT bpPassCount
);

Parameters

bpPassCount
[in] The BP_PASSCOUNT structure that specifies the pass count.

Return Value

If successful, returns S_OK; otherwise, returns an error code. Returns E_BP_DELETED if the state of the bound breakpoint object is set to BPS_DELETED (part of the BP_STATE enumeration).

Remarks

The pass count determines when the breakpoint is fired. The current pass or hit count can be obtained by calling the GetHitCount method.

Any pass count that was previously associated with this breakpoint is lost.

See also