delphi 调用vc写的动态连接库 ( 积分: 50 )

  • 主题发起人 主题发起人 vincent-hu
  • 开始时间 开始时间
V

vincent-hu

Unregistered / Unconfirmed
GUEST, unregistred user!
extern &quot;C&quot; BOOL WINAPI requestionData(BYTE*&amp; m_pOutData) <br>这样的导出函数在DELPHI中怎么调用呢
 
extern &quot;C&quot; BOOL WINAPI requestionData(BYTE*&amp; m_pOutData) <br>这样的导出函数在DELPHI中怎么调用呢
 
参见windows.pas单元
 
大家没看懂什么意思吗
 
多人接受答案了。
 
function requestionData(im_pOutData:pbyte):boolean;stdcall;external 'yourdll.dll';
 
后退
顶部