InitializeSListHead function (Windows)

Switch View :
ScriptFree
InitializeSListHead function

Applies to: desktop apps | Metro style apps

Initializes the head of a singly linked list.

Syntax

void WINAPI InitializeSListHead(
  __inout  PSLIST_HEADER ListHead
);

Parameters

ListHead [in, out]

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

All list items must be aligned on a MEMORY_ALLOCATION_ALIGNMENT boundary. Unaligned items can cause unpredictable results. See _aligned_malloc.

To add items to the list, use the InterlockedPushEntrySList function. To remove items from the list, use the InterlockedPopEntrySList function.

Examples

For an example, see Using Singly Linked Lists.

Requirements

Minimum supported client

Windows XP

Minimum supported server

Windows Server 2003

Header

WinBase.h (include Windows.h)

Library

Kernel32.lib

DLL

Kernel32.dll

See also

Interlocked Singly Linked Lists
InterlockedPopEntrySList
InterlockedPushEntrySList

 

 

Send comments about this topic to Microsoft

Build date: 3/7/2012