Unit linklist |
Classes |
TForm1 -
Functions |
Types |
Constants |
Variables |
Functions |
Types |
PComp = ^TCompThis project demonstrates the creation and use of a doubly-linked list
TComp = recordDeclare a pointer to our record to follow...
Prev : PComp;
Next : PComp;
ItemNum : integer;
AInteger : integer;
AString : String[255];
end;
Constants |
Variables |