Refine RPC

This commit is contained in:
Changhua
2022-08-07 15:03:17 +08:00
parent 4959b58b23
commit 19f6854b73
8 changed files with 85 additions and 92 deletions
+14 -3
View File
@@ -5,13 +5,24 @@
]
interface ISpy
{
import "rpc_types.h";
{
import "oaidl.idl";
typedef struct RpcMessage {
int self; // 是否自己发的消息:0=否,1=是
int type; // 消息类型
int source; // 消息来源:0=好友消息,1=群消息
BSTR id; // 消息ID
BSTR xml; // 群其他消息
BSTR wxId; // 发送人微信ID
BSTR roomId; // 群ID
BSTR content; // 消息内容,MAC版最大:16384,即16KB
} RpcMessage_t;
int IsLogin();
int SendTextMsg([ in, string ] const wchar_t *wxid, [ in, string ] const wchar_t *at_wxid, [ in, string ] const wchar_t *msg);
int SendImageMsg([ in, string ] const wchar_t *wxid, [ in, string ] const wchar_t *path);
void EnableReceiveMsg();
[callback] int ReceiveMsg([ in ] RpcMessage_t *msg);
[callback] int ReceiveMsg([ in ] RpcMessage_t rpcMsg);
};
+1 -12
View File
@@ -1,18 +1,7 @@
#pragma once
#pragma once
#define MSG_SIZE_MSG_ID 64
#define MSG_SIZE_MSG_XML 4096
#define MSG_SIZE_WXID 64
#define MSG_SIZE_ROOMID 64
#define MSG_SIZE_CONTENT 16385
typedef struct RpcMessage {
int self; // 是否自己发的消息:0=否,1=是
int type; // 消息类型
int source; // 消息来源:0=好友消息,1=群消息
wchar_t id[MSG_SIZE_MSG_ID]; // 消息ID
wchar_t xml[MSG_SIZE_MSG_XML]; // 群其他消息
wchar_t wxId[MSG_SIZE_WXID]; // 发送人微信ID
wchar_t roomId[MSG_SIZE_ROOMID]; // 群ID
wchar_t content[MSG_SIZE_CONTENT]; // 消息内容,MAC版最大:16384,即16KB
} RpcMessage_t;