/* 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 namespace Main { class Session; } // namespace Main class History; class PhotoData; class DocumentData; struct FileLoadResult; namespace Api { struct MessageToSend; struct SendAction; void SendExistingDocument( MessageToSend &&message, not_null document); void SendExistingPhoto( MessageToSend &&message, not_null photo); bool SendDice(MessageToSend &message); void FillMessagePostFlags( const SendAction &action, not_null peer, MessageFlags &flags); void SendConfirmedFile( not_null session, const std::shared_ptr &file); } // namespace Api