transfer_gift_box.h 547 B

12345678910111213141516171819202122
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. namespace Window {
  9. class SessionController;
  10. } // namespace Window
  11. namespace Data {
  12. struct UniqueGift;
  13. class SavedStarGiftId;
  14. } // namespace Data
  15. void ShowTransferGiftBox(
  16. not_null<Window::SessionController*> window,
  17. std::shared_ptr<Data::UniqueGift> gift,
  18. Data::SavedStarGiftId savedId);