原型    function Connect(const LinkMode,PortNum,DialMode:Byte;
       const Phone:String;Hub:Byte):Integer;如何调用?

解决方案 »

  1.   

    谁调用谁的DLL都一样!!~~
    主要是你声明的函数要符合接口标准(不能用string等pascal特有的类型,调用方式采用stdcall)~~function Connect(const LinkMode, PortNum, DialMode: Byte; const Phone: PChar; Hub: Byte): Integer; stdcall;
      

  2.   

    只要不是ActiveX,那就像调用API那样调用吧,PB没用过,不过在Delphi就不能像调用API那样哦