fpc/tests/webtbs/tw6586a.pp
2016-08-14 14:09:24 +00:00

21 lines
269 B
ObjectPascal

{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix,android,haiku }
{ %needlibrary }
{ %norun }
library tw6586a;
{$H+}{$MODE OBJFPC}
uses cmem;
procedure ExportTest1(input: longint); stdcall;
begin
input:= 5;
end;
exports
ExportTest1;
begin
end.