// wdm.h
USHORT ExQueryDepthSList(
[in] PSLIST_HEADER SListHead
);
View the official Windows Driver Kit DDI reference
No description available.
The ExQueryDepthSList routine returns the number of entries currently in a given sequenced singly linked list.
SListHead
[in]A pointer to the SLIST_HEADER structure that serves as the header for the sequenced singly linked list. SListHead must have been initialized by calling ExInitializeSListHead.
ExQueryDepthSList returns the current number of entries in the list.
For more information about using this routine to implement a sequenced singly linked list, see Singly and Doubly Linked Lists.