VC的DLL原型是:
extern "C" int __stdcall Connect_Server();
extern "C" int __stdcall Send_Message(int Socket, MESSAGE_INFO msg, MESSAGE_RSP& msg_rsp);
extern "C" int __stdcall DisConnect(int Socket);

为什么,我在声明时是:
  function Connect_Server():integer;stdcall; external 'SRP.dll' name 'Conect_Server';
  function Send_Message(sokt:integer; msg:pchar; num:pchar):integer;stdcall; external 'SRP.dll' name 'Send_Message';
  function DisConnect(sokt:integer):integer;stdcall; external 'SRP.dll' name 'DisConnect';
为什么,程序提示我:
无法定位程序输入点Connect_Server于动态链接库SRP.DLL上
无法定位程序输入点DisConnect于动态链接库SRP.DLL上
无法定位程序输入点Send_Message于动态链接库SRP.DLL上