Impl GetMsgTypes

This commit is contained in:
Changhua
2023-02-16 22:04:31 +08:00
parent 7f934f6ea9
commit 6c42e328ae
9 changed files with 167 additions and 38 deletions
+2 -3
View File
@@ -1,6 +1,5 @@
# Generate all fields as pointers.
* mangle_names:M_STRIP_PACKAGE
* fallback_type:FT_POINTER
MsgTypes.types max_count:10
MsgTypes.TypesEntry.value max_size:16
# MsgTypes.* max_size:16
MsgTypes* fallback_type:FT_CALLBACK
RpcContact* fallback_type:FT_CALLBACK
+7 -7
View File
@@ -55,14 +55,14 @@ message Response
Functions func = 1;
oneof msg
{
int32 status = 2;
string str = 3;
WxMsg wxmsg = 4;
MsgTypes types = 5;
int32 status = 2;
string str = 3;
WxMsg wxmsg = 4;
MsgTypes types = 5;
RpcContacts contacts = 6;
DbNames dbs = 7;
DbTables tables = 8;
DbRows rows = 9;
DbNames dbs = 7;
DbTables tables = 8;
DbRows rows = 9;
};
}