这是说明:
bool  eBusin_Connect(void* aInvoke)
注:如果是第三开发传空
调用时例子是这样说明的:
if not eBusin_Connect(nil) then ErrorReport;
我是这样做的: 
 function eBusin_Connect(): boolean;
      stdcall;external 'eBusin.dll';procedure TForm1.Button1Click(Sender: TObject);
begin
if not eBusin_Connect() then showmessage('连接失败'); 
end;最终一直提示连接失败。