C
cqbaobao
Unregistered / Unconfirmed
GUEST, unregistred user!
VC 写的 DLL 里的如下函数,如何在 DELPHI 里声明:<br>AFX_EXT_API void GetRendedBmp( BITMAP& bmpBg, <br> BITMAP& bmpFg,<br> BITMAP& bmpHuman,<br> BITMAP& bmpFont,<br> BITMAP& bmpOutput);<br>我是:<br><br>procedure GetRendedBmp(bmpBg, bmpFg, bmpHuman, bmpFont, bmpOutput: Bitmap);<br><br>implementation<br><br>procedure GetRendedBmp; external 'Rend.dll' name 'GetRendedBmp';<br><br>这样提示"不存在的输出 REND.DLL:GetRendedBmp"<br><br>