forked from eden-emu/eden
Add configurable logging backends
This commit is contained in:
parent
d74d2a77cb
commit
7af1a786d5
14 changed files with 408 additions and 22 deletions
14
src/yuzu/debugger/console.h
Normal file
14
src/yuzu/debugger/console.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2018 yuzu Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#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
|
Loading…
Add table
Add a link
Reference in a new issue