home *** CD-ROM | disk | FTP | other *** search
- {$A+,B-,D-,E-,F+,G-,I-,L-,N-,O+,P-,Q-,R-,S-,T-,V-,X-}
- (*===================================================================*)
- (* GOTH_.PAS *)
- (* Gothic-Font im Overlay *)
- (*===================================================================*)
-
- UNIT Goth_;
-
- INTERFACE
-
- FUNCTION ReadGothicFont: Pointer;
-
- IMPLEMENTATION
-
- PROCEDURE GothicFontProc; EXTERNAL; {$L GOTH.OBJ }
-
- FUNCTION ReadGothicFont: Pointer;
- BEGIN
- ReadGothicFont := @GothicFontProc;
- END;
-
- END.
-