home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1991 / 02 / bonus / drivers.pas < prev    next >
Pascal/Delphi Source File  |  1990-09-25  |  800b  |  36 lines

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