Link struct
Struct embedded in any struct to make it a doubly linked list. pxNext in the head points to the first node in the list and pxPrev in the head points to the last node in the list. In case of empty list, both pxPrev and pxNext in the head point to the head node itself.
Fields
Pointer to the previous node.
Pointer to the next node.