双链表:
LIST_ENTRY:
typedef struct _LIST_ENTRY {
struct _LIST_ENTRY *Flink; follow: next entry, header if it is the last entry in the list
struct _LIST_ENTRY *Blink; before: previous entry, header if it is the first entry in the list
} LIST_ENTRY, *PLIST_ENTRY;typedef struct _LIST_ENTRY