home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / DRIVERS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  781 b   |  35 lines

  1.  
  2. {           Copyright (c) 1985, 87 by Borland International, Inc.            }
  3.  
  4. unit Drivers;
  5. { Sample unit to accompany GRLINK.PAS. This unit links all the BGI graphics
  6.   driver into a single TPU file. This makes it easy to link the driver files
  7.   directly into an .EXE file. See GRLINK.PAS for more information.
  8. }
  9. interface
  10.  
  11. procedure ATTDriverProc;
  12. procedure CgaDriverProc;
  13. procedure EgaVgaDriverProc;
  14. procedure HercDriverProc;
  15. procedure PC3270DriverProc;
  16.  
  17. implementation
  18.  
  19. procedure ATTDriverProc; external;
  20. {$L ATT.OBJ }
  21.  
  22. procedure CgaDriverProc; external;
  23. {$L CGA.OBJ }
  24.  
  25. procedure EgaVgaDriverProc; external;
  26. {$L EGAVGA.OBJ }
  27.  
  28. procedure HercDriverProc; external;
  29. {$L HERC.OBJ }
  30.  
  31. procedure PC3270DriverProc; external;
  32. {$L PC3270.OBJ }
  33.  
  34. end.
  35.