Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
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
|
|
|
|
namespace Main {
|
|
class Session;
|
|
} // namespace Main
|
|
|
|
namespace Serialize {
|
|
|
|
int storageImageLocationSize(const StorageImageLocation &location);
|
|
void writeStorageImageLocation(
|
|
QDataStream &stream,
|
|
const StorageImageLocation &location);
|
|
|
|
// NB! This method can return StorageFileLocation with Type::Generic!
|
|
// The reader should discard it or convert to one of the valid modern types.
|
|
std::optional<StorageImageLocation> readStorageImageLocation(
|
|
int streamAppVersion,
|
|
QDataStream &stream);
|
|
|
|
int imageLocationSize(const ImageLocation &location);
|
|
void writeImageLocation(QDataStream &stream, const ImageLocation &location);
|
|
|
|
// NB! This method can return StorageFileLocation with Type::Generic!
|
|
// The reader should discard it or convert to one of the valid modern types.
|
|
std::optional<ImageLocation> readImageLocation(
|
|
int streamAppVersion,
|
|
QDataStream &stream);
|
|
|
|
uint32 peerSize(not_null<PeerData*> peer);
|
|
void writePeer(QDataStream &stream, not_null<PeerData*> peer);
|
|
PeerData *readPeer(
|
|
not_null<Main::Session*> session,
|
|
int streamAppVersion,
|
|
QDataStream &stream);
|
|
QString peekUserPhone(int streamAppVersion, QDataStream &stream);
|
|
|
|
} // namespace Serialize
|