fpc/tests/webtbs/tw9089c.pp
2008-03-25 12:39:37 +00:00

21 lines
306 B
ObjectPascal

{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos}
{ %needlibrary }
program ptest;
{$mode objfpc}{$H+}
const
{$ifdef windows}
libname='tw9089b.dll';
{$else}
libname='tw9089a';
{$linklib tw9089b}
{$endif}
function Test: Integer; cdecl; external libname;
begin
Writeln(Test);
end.