Unit 'EXEC' Package
[Overview][Constants][Types][Procedures and functions][Variables][Index] [#amunits]

tNode

List node structure, Each member in a list starts with a node.

Declaration

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;

See also

tMinNode

  

Minimal list entry without any type or name.

tList

  

List header.


Documentation generated on: 2021-07-30