structure SLIST_ENTRY (winnt.h)
Représente un élément dans une liste liée séparément.
Syntaxe
typedef struct _SLIST_ENTRY {
struct _SLIST_ENTRY *Next;
} SLIST_ENTRY, *PSLIST_ENTRY;
Membres
Next
Pointeur vers une structure de SLIST_ENTRY qui représente l’élément suivant d’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 d’Listes liés de manière unique.
Configuration requise
Condition requise | Valeur |
---|---|
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) |