在pb里delphi的这个函数应该怎么定义function GetFaxStatusEx(HD: THandle; sServer: Pchar; buf: Pchar;Var IErr : integer; sError: Pchar): boolean;stdcall; external 'DLL.dll';
------解决方案--------------------
function boolean GetFaxStatusEx(long THandle,ref string sServer,ref string buf,ref long IErr,ref string sError) Library "DLL.dll"
------解决方案--------------------
ref就是为了说明是 指针。
在调用时,把变量名字作为参数就好了。