fpc/tests/webtbs/tw13628b.pp
florian c45806c84f * made test more verbose
git-svn-id: trunk@40283 -
2018-11-11 17:32:21 +00:00

40 lines
600 B
ObjectPascal

{ %needlibrary }
{ %delfiles=tw13628a }
program loadmodule;
uses
popuperr,
dynlibs;
const
{$ifdef unix}
libname = './libtw13628a.'+SharedSuffix;
{$endif unix}
{$ifdef windows}
{$DEFINE NODLLPREFIX}
{$endif windows}
{$ifdef os2}
{$DEFINE NODLLPREFIX}
{$endif os2}
{$IFDEF NODLLPREFIX}
libname = 'tw13628a.' + SharedSuffix;
{$ENDIF NODLLPREFIX}
var
hdl: TLibHandle;
begin
hdl := loadlibrary(libname);
if (hdl=nilhandle) then
begin
writeln(GetLoadErrorStr);
halt(1);
end;
if not UnloadLibrary(hdl) then
halt(2);
writeln('ok');
end.