This commit is contained in:
hrxiang
2023-06-29 16:48:59 +08:00
parent f04d45f6b8
commit 70a46ed151
57 changed files with 2248 additions and 1774 deletions

View File

@@ -1,18 +1,18 @@
/// 消息发送失败
class MessageFailedCode {
/// 被对方拉黑
static const int blockedByFriend = 600;
static const int blockedByFriend = 1302;
/// 被对方删除
static const int deletedByFriend = 601;
/// 已被移除群聊/群已解散
static const int notInGroup = 302;
static const int notInGroup = 1205;
}
/// 添加好友失败
class AddFriendFailedCode {
/// 该用户已设置不可添加
static const int refuseToAddFriends = 10007;
static const int refuseToAddFriends = 10013;
}