H huangjihua Unregistered / Unconfirmed GUEST, unregistred user! 2006-08-05 #1 小弟遇到问题:请问高手们,在Delphi中编写的Dll。那么如何才能实现Dll调用Dll呢???要注意什么问题。最好给写例子和资料,谢谢............
H huangjihua Unregistered / Unconfirmed GUEST, unregistred user! 2006-08-05 #3 那在uses那里要写另一个dll的名字吗??
D dinglj1760 Unregistered / Unconfirmed GUEST, unregistred user! 2006-08-05 #5 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.
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.