Unit linklist

Classes

TForm1 -

Functions

Types

PComp
TComp

Constants

Variables

Form1


Functions


Types


PComp = ^TComp
This project demonstrates the creation and use of a doubly-linked list
TComp = record
Prev : PComp;
Next : PComp;
ItemNum : integer;
AInteger : integer;
AString : String[255];
end;
Declare a pointer to our record to follow...

Constants


Variables

Form1 : TForm1

Public declarations