delphi调用vc编写的DLL应注意的问题

VC:

.h

extern "C" _declspec(dllexport) bool GetUrl( const char *url, const char *savepath );

Delphi:

function GetUrl( Url:PChar; SavePath:PChar ):Boolean;cdecl external 'http.dll' name 'GetUrl';

猜你喜欢

转载自blog.csdn.net/tg2003/article/details/6319205