This commit is contained in:
azw 2023-02-15 14:21:00 +00:00
parent 2dc5796e54
commit dc02fb57ee
2 changed files with 0 additions and 136 deletions

View File

@ -7,17 +7,6 @@ enum CMMessageId_e
_CMLogin = 103;
_CMFriendInvite = 105;
_CMFriendAgree = 106;
_CMFriendDelete = 108;
_CMFriendApply = 109;
_CMFriendApplyList = 110;
_CMFriendBlackList = 111;
_CMFriendAddBlack = 112;
_CMFriendDeleteBlack = 113;
_CMFriendRefuse = 114;
_CMFriendList = 115;
_CMSendChatMsg = 151;
_CMSendCustomMsg = 152;
_CMUpdateTempCustomData = 153;
@ -29,7 +18,6 @@ enum CMMessageId_e
_CMGuildMsgBegin = 230;
_CMGuildCreate = 231;
_CMGuildJoin = 232;
_CMGuildAgree = 233;
_CMGuildKick = 234;
_CMGuildQuit = 235;
_CMGuildDismiss = 236;
@ -39,7 +27,6 @@ enum CMMessageId_e
_CMGuildApplyList = 242;
_CMGuildMemberSetJob = 244;
_CMGuildRefuse = 245;
_CMGuildAgreeInvite = 246;
_CMGuildGainExp = 247;
_CMGuildMsgEnd = 270;
}
@ -51,21 +38,9 @@ enum SMMessageId_e
_SMLogin = 103;
_SMFriendInvite = 105;
_SMFriendAgree = 106;
_SMFriendDelete = 108;
_SMFriendApply = 109;
_SMFriendApplyList = 110;
_SMFriendBlackList = 111;
_SMFriendAddBlack = 112;
_SMFriendDeleteBlack = 113;
_SMFriendRefuse = 114;
_SMFriendList = 115;
_SMGuildMsgBegin = 230;
_SMGuildCreate = 231;
_SMGuildJoin = 232;
_SMGuildAgree = 233;
_SMGuildKick = 234;
_SMGuildQuit = 235;
_SMGuildDismiss = 236;
@ -75,7 +50,6 @@ enum SMMessageId_e
_SMGuildApplyList = 242;
_SMGuildMemberSetJob = 244;
_SMGuildRefuse = 245;
_SMGuildAgreeInvite = 246;
_SMGuildGainExp = 247;
_SMGuildMsgEnd = 270;

View File

@ -200,116 +200,6 @@ message CMUpdateUserInfo
optional int32 delay_flag = 101; //(1-16)flag定时器覆盖
}
//
message CMFriendList
{
}
//
message SMFriendList
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
repeated MFUserInfo friend_list = 3; //
}
//
message CMFriendApply
{
optional string friend_id = 1; //id
optional string msg = 2; //
}
//
message SMFriendApply
{
optional int32 errcode = 1; //1:
optional string errmsg = 2; //
}
//
message CMFriendApplyList
{
optional MFPaging paging = 1; //
}
//
message SMFriendApplyList
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
optional MFPaging paging = 3; //
repeated MFFriendApply apply_list = 4; //
}
//
message CMFriendAgree
{
optional MFFriendApply apply = 1; //
}
//
message SMFriendAgree
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
}
//
message CMFriendRefuse
{
optional MFFriendApply apply = 1; //
}
//
message SMFriendRefuse
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
}
//
message CMFriendDelete
{
optional string friend_id = 1; //id
}
//
message SMFriendDelete
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
optional string friend_id = 3; //id
}
//
message CMFriendBlackList
{
}
//
message SMFriendBlackList
{
repeated MFUserInfo black_list = 1; //
}
//
message CMFriendAddBlack
{
optional MFUserInfo user_info = 1; //
}
//
message SMFriendAddBlack
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
}
//
message CMFriendDeleteBlack
{
optional string account_id = 1; //id
}
//
message SMFriendDeleteBlack
{
optional int32 errcode = 1; //
optional string errmsg = 2; //
}
//
message CMGuildInfo
{