How to disable logging window?

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
prencher

How to disable logging window?

Post by prencher »

Hiya,

I've looked around a bit on the site now, but couldnt find anything about it, maybe im blind, but: Is it possible to disable the logging window in v0.4?

Thanks,
Thomas Johansson.
Guest

Post by Guest »

In Visual C++ you have to create no "Console Application" but a "Win32 Application" -> and than an empty Project.

I don't know if it works with DevCpp, but this code should work:

Code: Select all

#include <windows.h>

int WINAPI WinMain(HINSTANCE        hInstance,     
                   HINSTANCE        hPrevInstance, 
                   LPSTR            lpCmdLine,     
                   int              nCmdShow)
{

// here you can add that what in the tutorials is in "void main()"......i think

	return 0;

};
prencher

Re...

Post by prencher »

Ah thanks :)

I didnt consider it maybe was settings of the project (which it was.. Using dev cpp currently), cheers :)
Post Reply