tdesktop/Telegram/SourceFiles/platform/win/specific_win.h
Ilya Fedin dc81f9eeaf Remove SetWatchingMediaKeys
Since SPMediaKeyTap has been removed on Mac, Linux is the only platform where this function is implemented, but that's not really needed due to MPRIS support, so SetWatchingMediaKeys can be dropped entirely
2021-07-19 22:56:14 +03:00

65 lines
1.2 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
#include "platform/platform_specific.h"
#include "base/platform/win/base_windows_h.h"
namespace Data {
class LocationPoint;
} // namespace Data
namespace Platform {
inline void IgnoreApplicationActivationRightNow() {
}
inline QImage GetImageFromClipboard() {
return {};
}
inline bool TrayIconSupported() {
return true;
}
inline bool SkipTaskbarSupported() {
return true;
}
namespace ThirdParty {
void start();
inline void finish() {
}
} // namespace ThirdParty
} // namespace Platform
inline void psCheckLocalSocket(const QString &) {
}
void psActivateProcess(uint64 pid = 0);
QString psAppDataPath();
QString psAppDataPathOld();
void psAutoStart(bool start, bool silent = false);
void psSendToMenu(bool send, bool silent = false);
int psCleanup();
int psFixPrevious();
void psNewVersion();
inline QByteArray psDownloadPathBookmark(const QString &path) {
return QByteArray();
}
inline void psDownloadPathEnableAccess() {
}
bool psLaunchMaps(const Data::LocationPoint &point);