/* 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 class QLibrary; class QWindow; extern "C" { #include #include } // extern "C" namespace Platform { namespace internal { void GdkHelperLoad(QLibrary &lib); void GdkSetTransientFor(GdkWindow *window, QWindow *parent); } // namespace internal } // namespace Platform