Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 1.05 KB

ienumdebugreferenceinfo2-skip.md

File metadata and controls

49 lines (42 loc) · 1.05 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Skips over the specified number of DEBUG_REFERENCE_INFO elements.
IEnumDebugReferenceInfo2::Skip
11/04/2016
reference
IEnumDebugReferenceInfo2::Skip
IEnumDebugReferenceInfo2::Skip
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IEnumDebugReferenceInfo2::Skip

Skips over the specified number of elements.

Syntax

int Skip(
   uint celt
);
HRESULT Skip(
   ULONG celt
);

Parameters

celt
[in] Number of elements to skip.

Return Value

If successful, returns S_OK. Returns S_FALSE if celt is greater than the number of remaining elements; otherwise, returns an error code.

Remarks

If celt specifies a value greater than the number of remaining elements, the enumeration is set to the end and S_FALSE is returned.

See also