Irrlicht without the console
-
Guest
Irrlicht without the console
can we use the engine without the console(in windows) popping out?
on Dev-cpp compile as a windows application instead of a console application. VC++ has a similar option, I forget exactly what it is.
You do a lot of programming? Really? I try to get some in, but the debugging keeps me pretty busy.
Crucible of Stars
Crucible of Stars
for vc++ 6 its a win32 application as opposed to console application but you have to run int main() like this:
take a look at the source for guice it'll show you a working example and guice is designed to compile fresh out of the rar.
Code: Select all
INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT )
{