DLL静态调用问题
调用时提示:project1.exe 无法找到入口,无法定位程序输入点max于动态链接库project2.dll 上。调用:
function max(x,y,z:integer):integer;stdcall;
External 'Project2.dll';
动态链接库
function Max(x,y,z:integer):Integer;stdcall;
var
t:Integer;
begin
if x<y then
t:=y
else
t:=x;
if t<z then
t:=z;
Max:=t ;
end;
exports
Max ;
begin
end.
帮顶 已查出问题,调用时的函数名与dll中定义的函数名应完全一致。包含字母的大小写。把上例中的m改大写M就OK了。
页:
[1]