0

我正在尝试在 devc++ 中使用 window.h,我在没有 mingw 的情况下安装了 devc++,并安装了 MinGW32 分离。

我正在尝试编译一个有#include <window.h>但出现错误的源代码。

window.h:没有这样的文件或目录。

我该怎么做才能在 dev c++ 中使用 window.h 进行编译?

在编译器选项中,我添加了mingw32\bin and mingw32\lib\gcc\mingw32.

我能做些什么来解决这个问题?

4

1 回答 1

1

我相信您想#include <windows.h>改用它,这是 Windows 头文件的典型包含语句。注意 中的“s” windows.h

于 2013-08-17T18:13:03.763 回答