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

  1. {$A+,B-,D-,E-,F-,I-,L-,N-,O-,R-,S-,V-}
  2.  
  3. { Copyright (c) 1985, 1989 by Borland International, Inc. }
  4.  
  5. unit Fonts;
  6. { Sample unit to accompany BGILINK.PAS. This unit links all the BGI graphics
  7.   fonts into a single TPU file. This makes it easy to incorporate the font
  8.   files directly into an .EXE file. See BGILINK.PAS for more information.
  9. }
  10. interface
  11.  
  12. procedure GothicFontProc;
  13. procedure SansSerifFontProc;
  14. procedure SmallFontProc;
  15. procedure TriplexFontProc;
  16.  
  17. implementation
  18.  
  19. procedure GothicFontProc; external;
  20. {$L GOTH.OBJ }
  21.  
  22. procedure SansSerifFontProc; external;
  23. {$L SANS.OBJ }
  24.  
  25. procedure SmallFontProc; external;
  26. {$L LITT.OBJ }
  27.  
  28. procedure TriplexFontProc; external;
  29. {$L TRIP.OBJ }
  30.  
  31. end.
  32.