{$mode objfpc}{$H+} library returningPLib; function func : integer; cdecl; forward; function func_short : smallint; cdecl; forward; exports func, func_short; // **************************************************************************** function func : integer; cdecl; begin result := 123456789; end; function func_short : smallint; cdecl; begin result := 12345; end; end.