The following code for me doesn't work, I want to hide the console window in the easiest possible way:
void HideConsole();
{
ShowWindow(GetC onsoleHwnd(),SW _HIDE);
}
I used this ref.
It states GetConsoleHwnd( is undeclared, any ideas?
void HideConsole(); on its own doesn't work at all...
Thanks all!
void HideConsole();
{
ShowWindow(GetC onsoleHwnd(),SW _HIDE);
}
I used this ref.
It states GetConsoleHwnd( is undeclared, any ideas?
void HideConsole(); on its own doesn't work at all...
Thanks all!
Comment