Minimal list entry without any type or name.
Source position: exec.pas line 138
type tMinNode = record |
||
mln_Succ: pMinNode; |
|
Pointer next node of the list. |
mln_Pred: pMinNode; |
|
Pointer previous node of the list. |
end; |
|
List node structure, Each member in a list starts with a node. |