mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 04:05:45 +00:00
Function is useful outside of bootmanager, so put it in a common place. qt_common: Add missing include qt_common: Add some newlines qt_common: Add trailing newline qt_common: Add trainline newline
15 lines
366 B
C++
15 lines
366 B
C++
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QWindow>
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
namespace YuzuQtCommon {
|
|
|
|
Core::Frontend::WindowSystemType GetWindowSystemType();
|
|
|
|
Core::Frontend::EmuWindow::WindowSystemInfo GetWindowSystemInfo(QWindow* window);
|
|
|
|
} // namespace YuzuQtCommon
|