SLIST_ENTRY structure (winnt.h)
Represents an item in a singly linked list.
Syntax
typedef struct _SLIST_ENTRY {
struct _SLIST_ENTRY *Next;
} SLIST_ENTRY, *PSLIST_ENTRY;
Members
Next
A pointer to an SLIST_ENTRY structure that represents the next item in a singly linked list.
Remarks
All list items must be aligned on a MEMORY_ALLOCATION_ALIGNMENT boundary. Unaligned items can cause unpredictable results. See _aligned_malloc.
Examples
For an example, see Using Singly Linked Lists.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2003 [desktop apps | UWP apps] |
Header | winnt.h (include Windows.h) |