Question

i'm trying to use window.h at devc++, i installed devc++ without mingw and installed MinGW32 separeted.

I'm trying to compile an souce code that have #include <window.h> but appear an error.

window.h: No such file or directory.

What can i do to be able to compile with window.h at dev c++?

At compiler options i had added path to mingw32\bin and mingw32\lib\gcc\mingw32.

What can i do to solve that?

Was it helpful?

Solution

I believe you want to use #include <windows.h> instead, which is the typical include statement for the Windows header file. Note the 's' in the windows.h.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top