#ifndef _NTRTL_H
//
// Linked lists
//
NTSYSAPI
VOID
NTAPI
RtlInitializeSListHead(
_Out_ PSLIST_HEADER ListHead
);
View code on GitHub// winnt.h
NTSYSAPI VOID RtlInitializeSListHead(
[in] PSLIST_HEADER ListHead
);
View the official Win32 API referenceNo description available.
Initializes the head of a singly linked list.
ListHead [in]A pointer to an SLIST_HEADER structure that represents the head of a singly linked list. This structure is for system use only.
This function does not return a value.
Calls to the InitializeSListHead function are forwarded to the RtlInitializeSListHead function. Applications should call InitializeSListHead instead of calling this function directly.
Interlocked Singly Linked Lists