2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 00:55:12 +00:00

Implement replies list request.

This commit is contained in:
John Preston
2020-08-28 14:01:55 +04:00
parent 437c9320cd
commit 00cdae0369
24 changed files with 1991 additions and 20 deletions

View File

@@ -133,11 +133,12 @@ struct MessageUpdate {
Destroyed = (1 << 1),
DialogRowRepaint = (1 << 2),
DialogRowRefresh = (1 << 3),
CallAdded = (1 << 4),
NewAdded = (1 << 4),
ReplyMarkup = (1 << 5),
BotCallbackSent = (1 << 6),
NewMaybeAdded = (1 << 7),
LastUsedBit = (1 << 6),
LastUsedBit = (1 << 7),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }