console.h 366 B

12345678910111213
  1. // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. namespace Debugger {
  5. /**
  6. * Uses the WINAPI to hide or show the stderr console. This function is a placeholder until we can
  7. * get a real qt logging window which would work for all platforms.
  8. */
  9. void ToggleConsole();
  10. } // namespace Debugger