struttura SINGLE_LIST_ENTRY (winnt.h)

Rappresenta un elemento in un elenco collegato singly.

Sintassi

typedef struct _SINGLE_LIST_ENTRY {
  struct _SINGLE_LIST_ENTRY *Next;
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY, SLIST_ENTRY, *PSLIST_ENTRY;

Members

Next

Puntatore a una struttura SLIST_ENTRY che rappresenta l'elemento successivo in un elenco collegato cane.

Commenti

Tutti gli elementi di elenco devono essere allineati su un limite MEMORY_ALLOCATION_ALIGNMENT . Gli elementi non allineati possono causare risultati imprevedibili. Vedere _aligned_malloc.

Esempio

Per un esempio, vedere Uso di elenchi collegati singly.

Requisiti

   
Client minimo supportato Windows XP [app desktop | App UWP]
Server minimo supportato Windows Server 2003 [app desktop | App UWP]
Intestazione winnt.h (include Windows.h)

Vedi anche

InitializeSListHead

InterlockedFlushSList

InterlockedPopEntrySList

InterlockedPushEntrySList