Delphi中:Dll如何调用Dll(0分)

  • 主题发起人 主题发起人 huangjihua
  • 开始时间 开始时间
H

huangjihua

Unregistered / Unconfirmed
GUEST, unregistred user!
小弟遇到问题:请问高手们,在Delphi中编写的Dll。那么如何才能实现Dll调用Dll呢???要注意什么问题。最好给写例子和资料,谢谢............
 
与应用调用一样
 
那在uses那里要写另一个dll的名字吗??
 
不用!
你不会应用程序调用DLL?
 
the function in dll a:
function GetSum(a,b:integer):integer export;

the dll b call the function in dll a
declare like this
function GetSum(a,b:integer):integer external 'a.dll'
and then you can use it.
 
好的,谢谢大虾们的帮助。非常感谢。。。。。
 
后退
顶部