Hi @All.
I use Irrlicht with C++ (Visual Studio 2005 C++ without .NET)
Can everyone say me how i can hide the CMD Window?
Thanks for help.
hide CMD in VS2005
http://irrlicht.sourceforge.net/tut001.html
Hello World wrote:On Windows platforms, we have to get rid of the console window, which pops up when starting a program with main(). This is done by the second pragma. We could also use the WinMain method, though losing platform independence then.
Code: Select all
#ifdef _IRR_WINDOWS_ #pragma comment(lib, "Irrlicht.lib") #pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup") #endif