fpc/tests/webtbs/tw6586a.pp
yury 87df3ab325 * Enable more tests for android.
git-svn-id: branches/targetandroid@23404 -
2013-01-16 10:57:51 +00:00

21 lines
263 B
ObjectPascal

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