library dll1;
uses
SysUtils,
Classes;
{$R *.res}
function TESTDLL:string;stdcall;
begin
Result:='test.';
end;
exports
TESTDLL;
end.