Skip to content

Instantly share code, notes, and snippets.

@trentbrooks
Created September 15, 2014 22:02
Show Gist options
  • Save trentbrooks/d82911ee9a39b201d0ee to your computer and use it in GitHub Desktop.
Save trentbrooks/d82911ee9a39b201d0ee to your computer and use it in GitHub Desktop.
Hide console window in VS for OF apps - add to main.cpp
HWND handleWindow;
AllocConsole();
handleWindow = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(handleWindow, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment