fpc/tests/webtbs/tw6586a.pp
Jonas Maebe 61df38ae9b + tests from mantis #6586, already work after the previous shared
library fixes

git-svn-id: trunk@10559 -
2008-03-25 15:44:30 +00:00

20 lines
234 B
ObjectPascal

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