mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-01-17 08:24:46 +00:00
14 lines
367 B
C++
14 lines
367 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Debugger {
|
|
|
|
/**
|
|
* Uses the WINAPI to hide or show the stderr console. This function is a placeholder until we can
|
|
* get a real qt logging window which would work for all platforms.
|
|
*/
|
|
void ToggleConsole();
|
|
} // namespace Debugger
|