fpc/tests/webtbs/tw6822b.pp
2015-02-15 01:34:47 +00:00

29 lines
434 B
ObjectPascal

{ %needlibrary }
{ %delfiles=tw6822a }
program loader;
{$mode objfpc}{$H+}
uses
popuperr,
dynlibs;
var
h: TLibHandle;
const
{$ifdef unix}
libname = './libtw6822a.'+SharedSuffix;
{$else unix}
libname = 'tw6822a.' + SharedSuffix;
{$endif unix}
begin
writeln('hello from loader program');
h:= loadlibrary(libname);
if h = nilhandle then
begin
write('could not load library');
exit;
end;
freelibrary(h);
end.