List node structure, Each member in a list starts with a node.
Source position: exec.pas line 126
type tNode = record |
||
ln_Succ: pNode; |
|
Pointer next node of the list. |
ln_Pred: pNode; |
|
Pointer previous node of the list. |
ln_Type: Byte; |
|
Type code. |
ln_Pri: ShortInt; |
|
Priority of node, mainly for list sorting. |
ln_Name: PChar; |
|
Identification string |
end; |
|
Minimal list entry without any type or name. |
|
|
List header. |