Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / test / library / ulib2a.pp
Size: Mime:
{ %target=win32,win64 }
{ %needlibrary }

unit
  ulib2a;

interface
{ Checks that the two functions with the same exported name 'p'
  are each loaded correctly. }
procedure p(var a : dword);external 'tlib1a' name 'p';
procedure p2(var a : dword);external 'tlib1b' name 'p';
procedure p3(var a : dword);external 'tlib1a' name 'p';

implementation

end.