SINGLE_LIST_ENTRY structure (winnt.h)
Représente un élément dans une liste liée séparément.
Syntaxe
typedef struct _SINGLE_LIST_ENTRY {
struct _SINGLE_LIST_ENTRY *Next;
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY, SLIST_ENTRY, *PSLIST_ENTRY;
Membres
Next
Pointeur vers une structure de SLIST_ENTRY qui représente l’élément suivant dans une liste liée séparément.
Remarques
Tous les éléments de liste doivent être alignés sur une limite MEMORY_ALLOCATION_ALIGNMENT . Les éléments non alignés peuvent entraîner des résultats imprévisibles. Voir _aligned_malloc.
Exemples
Pour obtenir un exemple, consultez Utilisation de listes liées singly.
Configuration requise
Client minimal pris en charge | Windows XP [applications de bureau | applications UWP] |
Serveur minimal pris en charge | Windows Server 2003 [applications de bureau | applications UWP] |
En-tête | winnt.h (inclure Windows.h) |