菜
菜鸟_me
Unregistered / Unconfirmed
GUEST, unregistred user!
我有delphi编写了一个简单的动态链接库,我把它和应用它的程序放在项目管理器下(即同一目录下),
但是我怎么引用应用程序都说无法定位程序输入点于动态链接库。
我动态链接库和应用的声明写在下面,请大哥大姐帮帮我看看有什么不对!
library lfwdll;
uses
sharemem,SysUtils,dialogs,windows;
function triple(n:integer):integer;stdcall;
begin
Result:=n*3;
end;
exports
triple;
end.
zai应用程序中的声明:
function triple(n:integer): integer; stdcall;external 'LFWDLL.DLL';
但是我怎么引用应用程序都说无法定位程序输入点于动态链接库。
我动态链接库和应用的声明写在下面,请大哥大姐帮帮我看看有什么不对!
library lfwdll;
uses
sharemem,SysUtils,dialogs,windows;
function triple(n:integer):integer;stdcall;
begin
Result:=n*3;
end;
exports
triple;
end.
zai应用程序中的声明:
function triple(n:integer): integer; stdcall;external 'LFWDLL.DLL';