X
xln18
Unregistered / Unconfirmed
GUEST, unregistred user!
我delphi用的比较顺手,可是现在有个DLL使用C编写的,
逼得我非得学习C,而且我用的VC摸不着头绪。
各位大侠有没有两全其美的办法。
function cmpp_connect_to_ismg(host:String;port:integer;conn:conn_desc ):
string;
external 'api.dll' name 'cmpp_connect_to_ismg';
conn:conn_desc 是C中是这样定义的:
struct conn_desc {
char id;
dpl_unit1 type;
}
typedef unsigned char dpl_unit1;
在delphi中要使用这个参数该怎么办?
逼得我非得学习C,而且我用的VC摸不着头绪。
各位大侠有没有两全其美的办法。
function cmpp_connect_to_ismg(host:String;port:integer;conn:conn_desc ):
string;
external 'api.dll' name 'cmpp_connect_to_ismg';
conn:conn_desc 是C中是这样定义的:
struct conn_desc {
char id;
dpl_unit1 type;
}
typedef unsigned char dpl_unit1;
在delphi中要使用这个参数该怎么办?