Advertisement
Guest User

HEADER

a guest
Dec 15th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <Windows.h>
  4. void HideConsole()
  5. {
  6. ::ShowWindow(::GetConsoleWindow(), SW_HIDE);
  7. }
  8.  
  9. void ShowConsole()
  10. {
  11. ::ShowWindow(::GetConsoleWindow(), SW_SHOW);
  12. }
  13.  
  14. bool IsConsoleVisible()
  15. {
  16. return ::IsWindowVisible(::GetConsoleWindow()) != FALSE;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement