home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / HPGLVU10.ZIP / SMALFONT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-04-18  |  258 b   |  16 lines

  1. {A unit to register just SMALFONT with the BGI Driver for HPGLVIEW 
  2.  Derived from FONTS.PAS, thanks to BORLAND Inc.
  3. }
  4.  
  5. unit SMALFONT;
  6. interface
  7.  
  8. procedure SmallFontProc;
  9.  
  10. implementation
  11.  
  12. procedure SmallFontProc; external;
  13. {$L LITT.OBJ }
  14.  
  15. end.
  16.