NetRingIncrementIndex - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ring.h

UINT32 NetRingIncrementIndex(
  [in] NET_RING const *Ring,
  [in] UINT32         Index
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ring-netringincrementindex)

NetRingIncrementIndex function

Description

Returns the next index value after the specified index value, wrapping around to the beginning of the ring buffer if necessary.

Parameters

Ring [in]

A pointer to a NET_RING.

Index [in]

The index value to increment.

Return value

Returns the next index value after the specified index value, wrapping around to the beginning of the ring buffer if necessary.

Remarks

This routine is a convenient equivalent to calling NetRingAdvanceIndex with a Distance of 1.

See also

NET_RING

NetRingAdvanceIndex