mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 17:16:03 +02:00
* Reset branch for WPF changes * Convert BMP to PNG; fix link-out-of-scope err * Add snippets for WPF... 6794 files!!!! * Add missing snippets * update file updated between migration * Fix paths to include * update breadcrumb and toc * fix index links * fix index links * fix index links * fix markdown
24 lines
631 B
Markdown
24 lines
631 B
Markdown
---
|
|
title: "IEnumRAWINPUTDEVIC:Skip"
|
|
ms.date: "03/30/2017"
|
|
helpviewer_keywords:
|
|
- "Skip method [WPF]"
|
|
ms.assetid: c967b0f8-1c6a-459c-8c16-d4f08918ab65
|
|
---
|
|
# IEnumRAWINPUTDEVIC:Skip
|
|
Instructs the enumerator to skip the next `celt` elements in the enumeration so that the next call to [IEnumRAWINPUTDEVIC:Next](ienumrawinputdevic-next.md) will not return those elements.
|
|
|
|
## Syntax
|
|
|
|
```cpp
|
|
HRESULT Skip( [in] ULONG celt);
|
|
```
|
|
|
|
## Parameters
|
|
`celt`
|
|
|
|
[in] Number of elements to be skipped.
|
|
|
|
## Property Value/Return Value
|
|
HRESULT: S_OK if the number of elements supplied is `celt`; S_FALSE otherwise.
|