../Core/Inc/Easyx.h(34): error: #5: cannot open source input file "windows.h": No such file or directory
时间: 2024-05-22 08:10:07 浏览: 130
无法打开包括文件:“stdint.h”: No such file or directory
这个错误提示表明编译器无法找到 "windows.h" 头文件。这个头文件是 Windows 系统提供的,因此如果你正在使用其他操作系统(例如 Linux 或 macOS),你需要使用相应的替代头文件。
如果你确实使用的是 Windows 系统,请确保在编译器的 include 路径中包含了 Windows SDK 的路径。你可以在 Visual Studio 中通过项目属性中的 "VC++ Directories" 选项卡来添加相应的路径。如果你使用的是其他编译器,你需要查看该编译器的文档来了解如何添加 include 路径。
阅读全文