Add configurable logging backends

This commit is contained in:
James Rowe 2018-07-02 11:10:41 -06:00 committed by bunnei
parent d74d2a77cb
commit 7af1a786d5
14 changed files with 408 additions and 22 deletions

View 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