library dll1;
uses
SysUtils,
Classes;
{$R *.res}
function TESTDLL:string;stdcall;
begin
Result:=‘test.‘;
end;
exports
TESTDLL;
begin
end.
原文地址:https://www.cnblogs.com/blogpro/p/11453436.html
时间: 2024-10-11 05:52:55
library dll1;
uses
SysUtils,
Classes;
{$R *.res}
function TESTDLL:string;stdcall;
begin
Result:=‘test.‘;
end;
exports
TESTDLL;
begin
end.
原文地址:https://www.cnblogs.com/blogpro/p/11453436.html