Delphi Dll 动态调用例子

Posted 我的学习笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi Dll 动态调用例子相关的知识,希望对你有一定的参考价值。

http://zhidao.baidu.com/question/157196792.html

delphi动态调用DLL

写了个1.dll内容如下 library Project2; uses SysUtils, Classes; {$R *.res} function abc(x,y:Integer):Integer;stdcall; begin Result:=x+y; end; exports abc; end. 如何动态调用它呢。 比如想实现Edit3.Text:=IntToStr(abc(strtoint...展开
不对啊,调试通了,算不对。
青楼_男子_ | 浏览 6795 次  2010-06-03 16:15
2010-06-03 16:26 最佳答案
 
var
dll:Cardinal;
pp:function(x,y:integer):integer;
begin
dll:=LoadLibrary(PChar(‘xx.dll‘));
if dll<>0 then
begin
@pp:=GetProcAddress(dll, ‘abc‘);
if @pp<>nil then
Edit3.Text:=inttostr(pp(strtoint(Edit1.Text),strtoint(Edit2.text)));
FreeLibrary(dll);
end;
end;

以上是关于Delphi Dll 动态调用例子的主要内容,如果未能解决你的问题,请参考以下文章

Delphi Dll 动态调用例子

delphi 怎么动态调用dll中的过程

关于delphi中动态调用dll时出现的问题

Delphi简单调用DLL

delphi怎么样编写DLL文件和怎么样去加载我编写的DLL文件,请高手详细给我一步一步写步骤出来,有例子最好

Delphi7 dll 动态调用的问题