console.h 385 B

1234567891011121314
  1. // Copyright 2018 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. namespace Debugger {
  6. /**
  7. * Uses the WINAPI to hide or show the stderr console. This function is a placeholder until we can
  8. * get a real qt logging window which would work for all platforms.
  9. */
  10. void ToggleConsole();
  11. } // namespace Debugger