Mattias Gärtner пишет: > Zitat von Vincent Snijders <[EMAIL PROTECTED]>: > > > Are you sure? > > I can do without linking errors: > > var c: integer; external name 'goal'; > > procedure Bla; cdecl; external name 'money'; > >
try it so: unit money; interface function Bla:Boolean; cdecl; external 'money.so'; function IsBla: Boolean; implementation function IsBla: Boolean; begin IsBla := Bla; end; end. program test_money; uses money; begin end. Btw, money is not a goal :) Best regards, Paul Ishenin. _______________________________________________ Lazarus mailing list [email protected] http://www.lazarus.freepascal.org/mailman/listinfo/lazarus
