2023-05-02 02:27:45 +02:00
|
|
|
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QWindow>
|
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
|
2023-05-04 00:11:34 +02:00
|
|
|
namespace QtCommon {
|
2023-05-02 02:27:45 +02:00
|
|
|
|
|
|
|
Core::Frontend::WindowSystemType GetWindowSystemType();
|
|
|
|
|
|
|
|
Core::Frontend::EmuWindow::WindowSystemInfo GetWindowSystemInfo(QWindow* window);
|
|
|
|
|
2023-05-04 00:11:34 +02:00
|
|
|
} // namespace QtCommon
|