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.
How to disable logging window?
-
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:
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;
};