Prev Next

LIST_ENTRY info

The LIST_ENTRY structure is available for any entry in a double-linked list.

typedef struct _LIST_ENTRY { // le 

    struct _LIST_ENTRY *Flink; 

    struct _LIST_ENTRY *Blink; 

} LIST_ENTRY; 

 

Members

Flink
Points to the preceding entry in a double-linked list.
Blink
Points to the next entry in a double-linked list.

Remarks

This structure can be used as the beginning of a double-linked list or as any subsequent entry in the list.