// wdm.h
VOID InitializeSListHead(
[in] PSLIST_HEADER SListHead
);
View the official Windows Driver Kit DDI referenceNo description available.
The InitializeSListHead routine (or ExInitializeSListHead) initializes an SLIST_HEADER structure that represents the head of a sequenced singly linked list.
SListHead [in]A pointer to the SLIST_HEADER structure to initialize. The structure must be 16-byte aligned on 64-bit platforms.
For more information about using this routine to implement a sequenced singly linked list, see Singly and Doubly Linked Lists.
Callers of InitializeSListHead or ExInitializeSListHead can be running at any IRQL. If ExInitializeSListHead is called at IRQL >= DISPATCH_LEVEL the storage for SListHead must be resident.
ExInitializeNPagedLookasideList
ExInitializePagedLookasideList