home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / POSTOGRF.ZIP / LIPSFONT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1989-06-06  |  395 b   |  17 lines

  1. { LIPSFONT - modelled on Borland's FONTS.PAS}
  2.  
  3. unit LipsFont;
  4. { This unit links the SANS BGI graphics font into a single TPU file.
  5.    This makes it easy to incorporate the font files directly into a
  6.    .EXE file. See Borland's GRLINK.PAS for more information.
  7. }
  8. interface
  9.  
  10. procedure SansSerifFontProc;
  11.  
  12. implementation
  13.  
  14. procedure SansSerifFontProc; external;
  15. {$L SANS.OBJ }
  16. end.
  17.