2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 10:47:11 +00:00

29 lines
606 B
C
Raw Normal View History

2019-07-17 16:34:39 +02:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
class History;
2020-03-06 16:12:03 +04:00
class PhotoData;
2019-07-17 16:34:39 +02:00
class DocumentData;
namespace Api {
struct MessageToSend;
2019-07-17 16:34:39 +02:00
void SendExistingDocument(
Api::MessageToSend &&message,
not_null<DocumentData*> document);
2019-07-17 16:34:39 +02:00
void SendExistingPhoto(
Api::MessageToSend &&message,
not_null<PhotoData*> photo);
2019-07-17 16:34:39 +02:00
2020-03-06 16:12:03 +04:00
[[nodiscard]] bool SendDice(Api::MessageToSend &message);
2019-07-17 16:34:39 +02:00
} // namespace Api