mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-11 11:47:09 +02:00
35 lines
742 B
C++
35 lines
742 B
C++
/*
|
|
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 HistoryItem;
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace Payments {
|
|
struct CreditsFormData;
|
|
} // namespace Payments
|
|
|
|
namespace Ui {
|
|
|
|
class GenericBox;
|
|
|
|
void SendCreditsBox(
|
|
not_null<Ui::GenericBox*> box,
|
|
std::shared_ptr<Payments::CreditsFormData> data,
|
|
Fn<void()> sent);
|
|
|
|
[[nodiscard]] TextWithEntities CreditsEmoji(
|
|
not_null<Main::Session*> session);
|
|
|
|
[[nodiscard]] TextWithEntities CreditsEmojiSmall(
|
|
not_null<Main::Session*> session);
|
|
|
|
} // namespace Ui
|