fpc/tests/webtbs/tw6822b.pp
yury 7869db56cc * Fixed tests to compile for wince.
git-svn-id: trunk@10733 -
2008-04-19 23:21:24 +00:00

33 lines
478 B
ObjectPascal

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