W
wlandll
Unregistered / Unconfirmed
GUEST, unregistred user!
extern "C" __declspec(dllexport) __stdcall int SendClientMsg(char* Ip,int Port,char *Data);
/*通用数据接口 *Data 的结构如下*/
typedef struct stu_msg{
char mobile[11+1];/*手机号码*/
char msg[255+1];/*短消息*/
char oper[20+1];/*应用程序操作员代码*/
char compno[10+1];/*公司代码(县公司或市公司)*/
char [4+1];/**/
}myMsg;
我在Delhpi中该如何定义调用函数,又该如何传参数并调用该函数??
/*通用数据接口 *Data 的结构如下*/
typedef struct stu_msg{
char mobile[11+1];/*手机号码*/
char msg[255+1];/*短消息*/
char oper[20+1];/*应用程序操作员代码*/
char compno[10+1];/*公司代码(县公司或市公司)*/
char [4+1];/**/
}myMsg;
我在Delhpi中该如何定义调用函数,又该如何传参数并调用该函数??