Delphi的DLL,C++build调用的问题. ( 积分: 50 )

  • 主题发起人 主题发起人 zxp_ping
  • 开始时间 开始时间
Z

zxp_ping

Unregistered / Unconfirmed
GUEST, unregistred user!
别人的delphi的DLL,如函数:
function(var a:integer):integer;
在C++ Build中该如何调用?
 
别人的delphi的DLL,如函数:
function(var a:integer):integer;
在C++ Build中该如何调用?
 
在delphi内的导出函数一定要加stdcall修饰;
在C++内的导入函数也要加stdcall修饰;
那么一切OK!!!!
 
接受答案了.
 
后退
顶部