mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:07:56 +02:00
21 lines
269 B
ObjectPascal
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.
|
|
|