Skip to content

Instantly share code, notes, and snippets.

@davidglezz
Created November 4, 2013 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidglezz/7307178 to your computer and use it in GitHub Desktop.
Save davidglezz/7307178 to your computer and use it in GitHub Desktop.
Hide windows
#include <windows.h>
int main()
{
// Example: Hide all windows
while(1)
{
HWND window = GetForegroundWindow();
ShowWindow(window, false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment