Skip to content

Instantly share code, notes, and snippets.

@MARSHMALLLOW
Created October 8, 2019 16:05
Show Gist options
  • Save MARSHMALLLOW/399a363a2ef3698c576bc705e16498bf to your computer and use it in GitHub Desktop.
Save MARSHMALLLOW/399a363a2ef3698c576bc705e16498bf to your computer and use it in GitHub Desktop.
#include <Windows.h>
int main() {
FreeConsole();
HWND hWnd = FindWindow(0, "Program Manager");
ShowWindow(hWnd, SW_HIDE);
MessageBox(NULL, "Press OK when ready.", "Confirmation", MB_ICONQUESTION | MB_OK);
ShowWindow(hWnd, SW_SHOW);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment