怎样调用C写的dll?函数中有指针???(50分)

  • 主题发起人 主题发起人 missfen
  • 开始时间 开始时间
M

missfen

Unregistered / Unconfirmed
GUEST, unregistred user!
函数原型
dpl_status_t cmpp_connect_to_ismg(char *host,
dpl_port_t port,conn_desc *conn);
返回值
DPL_SUCCESS:成功与服务器建立连接
DPL_EINVALSOCK:创建连接套接字失败
DPL_EINVAL:非法服务器地址
DPL_HOST_UNREACHABLE:连接服务器失败
参数
host:服务器的IP地址
port:服务器的端口号
conn:输出参数,用于传出连接描述
 
function cmpp_connect_to_ismg(host:PChar;
port:integer; conn:PChar);integer;stdcall;external 'xxx.dll'
 
接受答案了.
 
后退
顶部