L
lotuscheng
Unregistered / Unconfirmed
GUEST, unregistred user!
在DLL的unit1单元中编写如下函数:
//申明:
function Zoom(SourceResult:Integer):Integer;stdcall;export;
//实现
function Zoom(SourceResult:Integer):Integer;
begin
if SourceResult>0 then
Result:=SourceResult*3
else
Result:=SourceResult;
end;
在library Project2中声明如下:
exports
Zoom2;
问题1:编译的时候出现:[Error] Project2.dpr(51): Declaration expected but
identifier 'Zoom2' found
问题2:如何调试DLL中的代码,我在Run Parameters中指定了调用该DLL的主程序,调试时
只出现寄存器窗口。
//申明:
function Zoom(SourceResult:Integer):Integer;stdcall;export;
//实现
function Zoom(SourceResult:Integer):Integer;
begin
if SourceResult>0 then
Result:=SourceResult*3
else
Result:=SourceResult;
end;
在library Project2中声明如下:
exports
Zoom2;
问题1:编译的时候出现:[Error] Project2.dpr(51): Declaration expected but
identifier 'Zoom2' found
问题2:如何调试DLL中的代码,我在Run Parameters中指定了调用该DLL的主程序,调试时
只出现寄存器窗口。