home *** CD-ROM | disk | FTP | other *** search
- {LIPSDRVR.PAS - modelled on Borland's DRIVERS.PAS}
-
- unit LipsDrvr;
- { This unit links all the BGI graphics (except 3270 & fancier board)
- driver into a single TPU file. This makes it easy to link the driver files
- directly into an .EXE file. See Borland's GRLINK.PAS for more information.
- }
- interface
-
- procedure ATTDriverProc;
- procedure CgaDriverProc;
- procedure EgaVgaDriverProc;
- procedure HercDriverProc;
-
- implementation
-
- procedure ATTDriverProc; external;
- {$L ATT.OBJ }
-
- procedure CgaDriverProc; external;
- {$L CGA.OBJ }
-
- procedure EgaVgaDriverProc; external;
- {$L EGAVGA.OBJ }
-
- procedure HercDriverProc; external;
- {$L HERC.OBJ }
-
- end.