标签:function 注意事项 图片 fun 字符串 exports 字符 end 技术
library dll1;
uses
SysUtils,
Classes;
{$R *.res}
function TESTDLL:string;stdcall;
begin
Result:=‘test.‘;
end;
exports
TESTDLL;
begin
end.
标签:function 注意事项 图片 fun 字符串 exports 字符 end 技术
原文地址:https://www.cnblogs.com/blogpro/p/11453436.html