diff options
Diffstat (limited to 'src/citron/debugger/console.h')
-rw-r--r-- | src/citron/debugger/console.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/citron/debugger/console.h b/src/citron/debugger/console.h new file mode 100644 index 000000000..2491d1ec1 --- /dev/null +++ b/src/citron/debugger/console.h @@ -0,0 +1,13 @@ +// 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 |