回 帖 发 新 帖 刷新版面

主题:请教各位高手

我这些程序编译不了,请问错在哪里了呢?
unit unit2
 library TestDLL

 uses sharemem,SysUtils,Dialogs,classes

implementation
{$R *.RES}
procedure test;
begin
showmesage('this is a test');
end;
exports
test;
begin

end.
请高手不吝赐教

回复列表 (共2个回复)

沙发

你是要写动态链接库吗?压根结构不对哎

板凳

library TestDLL;

 uses sharemem,SysUtils,Dialogs,classes;

{$R *.RES}
procedure test;stdcall
begin
showmessage('this is a test');
end;

exports
test;
begin

end.

我来回复

您尚未登录,请登录后再回复。点此登录或注册