I am using this Code to hide the console window:
C++:
void Stealth()
{
HWND Stealth;
AllocConsole();
Stealth = FindWindowA("ConsoleWindowClass", NULL);
ShowWindow(Stealth,0);
}
It is still showing for a second, so as a task it is very annoying. A tip was to create a Win32 GUI program with no GUI. I tried that, but by deleting some parts of the Visual Studio GUI example the code always got corrupt. Could you please provide an empty GUI program with everything removed, so I can use it?