[Overview][Constants][Types][Procedures and functions][Index] Reference for unit 'Exec' (#aros)

TNode

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

Declaration

Source position: exec.pas line 101

type TNode = record

  ln_Succ: PNode;

  

Pointer next node of the list.

  ln_Pred: PNode;

  

Pointer previous node of the list.

  ln_Name: STRPTR;

  

Identification string

  ln_Type: Byte;

  

Type code.

  ln_Pri: ShortInt;

  

Priority of node, mainly for list sorting.

end;

See also

tMinNode

  

Minimal list entry without any type or name.

tList

  

List header.


Documentation generated on: 2017-01-10