RtlInitializeSListHead - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

//
// Linked lists
//

NTSYSAPI
VOID
NTAPI
RtlInitializeSListHead(
    _Out_ PSLIST_HEADER ListHead
    );

#endif

View code on GitHub
// winnt.h

NTSYSAPI VOID RtlInitializeSListHead(
  [in] PSLIST_HEADER ListHead
);
View the official Win32 API reference

NtDoc

No description available.

Win32 API reference (nf-winnt-rtlinitializeslisthead)

RtlInitializeSListHead function

Description

Initializes the head of a singly linked list.

Parameters

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.

Return value

This function does not return a value.

Remarks

Calls to the InitializeSListHead function are forwarded to the RtlInitializeSListHead function. Applications should call InitializeSListHead instead of calling this function directly.

See also

Interlocked Singly Linked Lists