/* 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 class QLibrary; #ifndef TDESKTOP_DISABLE_GTK_INTEGRATION extern "C" { #undef signals #include #include #define signals public } // extern "C" namespace Platform { namespace internal { void GdkHelperLoad(QLibrary &lib); bool GdkHelperLoaded(); void XSetTransientForHint(GdkWindow *window, quintptr winId); } // namespace internal } // namespace Platform #endif // !TDESKTOP_DISABLE_GTK_INTEGRATION