Created
September 15, 2014 22:02
-
-
Save trentbrooks/d82911ee9a39b201d0ee to your computer and use it in GitHub Desktop.
Hide console window in VS for OF apps - add to main.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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