fpc/tests/webtbs/tw8730d.pp
Jonas Maebe 5cc0477dfa * test is not for windows
git-svn-id: trunk@10497 -
2008-03-16 09:28:26 +00:00

37 lines
733 B
ObjectPascal

{ %target=darwin,linux,freebsd,solaris,beos}
{ %NEEDLIBRARY }
{ same as tw8730c, but linking to libc so it uses different }
{ startup code }
{$mode delphi}
program MainApp;
uses
initc, sysutils;
const
{$ifdef windows}
libname='tw8730b.dll';
{$else}
libname='tw8730b';
{$linklib tw8730b}
{$endif}
function Lib2Func: pchar; CDecl; external libname name 'Lib2Func';
var
error: byte;
begin
error:=0;
WriteLn( Lib2Func );
if not(fileexists('tw8730a.txt')) or
not(fileexists('tw8730b.txt')) then
error:=1;
if (fileexists('tw8730a.txt')) then
deletefile('tw8730a.txt');
if (fileexists('tw8730b.txt')) then
deletefile('tw8730b.txt');
halt(error);
end.