summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/console.h
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2018-07-02 11:10:41 -0600
committerbunnei <bunneidev@gmail.com>2018-07-02 21:45:47 -0400
commit6269a01b4e9963ffdaf98ddf5d5f2a90d49e58ff (patch)
treec69305f1bca02461e4af8dc20f0b47601f276fc0 /src/yuzu/debugger/console.h
parent0d46f0df122dbc9b9a9d9f97e2da6b1953ef939b (diff)
Add configurable logging backends
Diffstat (limited to 'src/yuzu/debugger/console.h')
-rw-r--r--src/yuzu/debugger/console.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/yuzu/debugger/console.h b/src/yuzu/debugger/console.h
new file mode 100644
index 000000000..d1990c496
--- /dev/null
+++ b/src/yuzu/debugger/console.h
@@ -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 \ No newline at end of file