mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 16:59:14 +02:00
22 lines
220 B
ObjectPascal
22 lines
220 B
ObjectPascal
{ %norun }
|
|
{ %target=win32,win64,wince,linux}
|
|
|
|
library tw7838a;
|
|
|
|
{$mode objfpc} {$h+}
|
|
|
|
uses uw7838a;
|
|
|
|
function dllf: longint;
|
|
begin
|
|
result:=exetest;
|
|
if (result<>aa) then
|
|
halt(1);
|
|
end;
|
|
|
|
exports dllf;
|
|
|
|
begin
|
|
|
|
end.
|