// ring.h
UINT32 NetRingIncrementIndex(
[in] NET_RING const *Ring,
[in] UINT32 Index
);
View the official Windows Driver Kit DDI referenceNo description available.
Returns the next index value after the specified index value, wrapping around to the beginning of the ring buffer if necessary.
Ring [in]A pointer to a NET_RING.
Index [in]The index value to increment.
Returns the next index value after the specified index value, wrapping around to the beginning of the ring buffer if necessary.
This routine is a convenient equivalent to calling NetRingAdvanceIndex with a Distance of 1.