home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / das_buch / overlays / goth_.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-05-06  |  580 b   |  23 lines

  1. {$A+,B-,D-,E-,F+,G-,I-,L-,N-,O+,P-,Q-,R-,S-,T-,V-,X-}
  2. (*===================================================================*)
  3. (*                           GOTH_.PAS                               *)
  4. (*                      Gothic-Font im Overlay                       *)
  5. (*===================================================================*)
  6.  
  7. UNIT Goth_;
  8.  
  9. INTERFACE
  10.  
  11. FUNCTION ReadGothicFont: Pointer;
  12.  
  13. IMPLEMENTATION
  14.  
  15. PROCEDURE GothicFontProc; EXTERNAL; {$L GOTH.OBJ }
  16.  
  17. FUNCTION ReadGothicFont: Pointer;
  18. BEGIN
  19.   ReadGothicFont := @GothicFontProc;
  20. END;
  21.  
  22. END.
  23.