fpc/tests/webtbs/tw16263b.pp
yury ee1e6eb4ea * Add %delfiles for proper clean-up.
git-svn-id: branches/targetandroid@23495 -
2013-01-22 16:58:30 +00:00

29 lines
497 B
ObjectPascal

{ %target=darwin,linux,freebsd,solaris,beos,haiku,aix,android }
{ %NEEDLIBRARY }
{ %delfiles=tw16263a }
{$mode delphi}
program MainApp;
uses
dynlibs,
Math;
const
{$ifdef windows}
libname='tw16263a.dll';
{$else}
libname = './libtw16263a.'+SharedSuffix;
{$endif}
var
hdl: TLibHandle;
begin
// the library will perform a div-by-zero in its init code
setexceptionmask([exZeroDivide]);
hdl := loadlibrary(libname);
if (hdl=nilhandle) then
halt(1);
unloadlibrary(hdl);
end.