Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!iuvax!cica!tut.cis.ohio-state.edu!gem.mps.ohio-state.edu!samsung!aplcen!haven!adm!xadmx!Slomcenski.WBST@xerox.com From: Slomcenski.WBST@xerox.com Newsgroups: comp.lang.pascal Subject: Re: linking external fonts into TP5.5 Message-ID: <21438@adm.BRL.MIL> Date: 14 Nov 89 12:45:07 GMT Sender: news@adm.BRL.MIL Lines: 35 Alex, In your module, you have the {$L XXX} directive after the procedure header. This prevents TURBO from 'seeing' the implementation for the first procedure. You must place the {$L XXX} directive before the procedure header to which it applies (in the implementation section): ======================================================================= { Copyright (c) 1985, 1989 by Borland International, Inc. } unit Fonts; { Sample unit to accompany BGILINK.PAS. This unit links all the BGI graphics fonts into a single TPU file. This makes it easy to incorporate the font files directly into an .EXE file. See BGILINK.PAS for more information. } interface procedure ComplexFontProc; procedure EuroStyleFontProc; implementation {$L TRIP.OBJ } procedure ComplexFontProc; external; {$L SANS.OBJ } procedure EuroStyleFontProc; external; end. ======================================================================== ~Bob