Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 devc++ 中使用 window.h,我在没有 mingw 的情况下安装了 devc++,并安装了 MinGW32 分离。
我正在尝试编译一个有#include <window.h>但出现错误的源代码。
#include <window.h>
window.h:没有这样的文件或目录。
我该怎么做才能在 dev c++ 中使用 window.h 进行编译?
在编译器选项中,我添加了mingw32\bin and mingw32\lib\gcc\mingw32.
mingw32\bin and mingw32\lib\gcc\mingw32
我能做些什么来解决这个问题?
我相信您想#include <windows.h>改用它,这是 Windows 头文件的典型包含语句。注意 中的“s” windows.h。
#include <windows.h>
windows.h