系统相关
首页 > 系统相关> > cannot open source file "windows.h"的解决方法

cannot open source file "windows.h"的解决方法

作者:互联网

1.在资源浏览器检索SDK(一般是检索C盘),找到Windows SDK的安装目录(名字一般是Microsoft SDKs),并确认里面不是空。

 

2.如果检索不到Windows SDK/Microsoft SDKs目录或目录为空,就运行Visual Studio Installer,补充安装Windows 10 SDK或Windows 11 SDK

 

3.如果SDK目录正常,就在Visual Studio中修改项目的配置项:

右键项目名 -> Properties -> Configuration Properties -> 

(1)  -> C/C++ -> General -> Additional Include Directories

添加SDK目录下的Include 子目录的路径,例如SDK在C:\Microsoft SDKs目录,就添加C:\Microsoft SDKs\Include\

(2) -> Linker -> General -> Additional Library Directories

添加SDK目录下的Lib子目录的路径,例如SDK在C:\Microsoft SDKs目录,就添加C:\Microsoft SDKs\Lib\

 

4.如果以上方法不可行,可以尝试打开Visual Studio安装目录下的\VC\PlatformSDK\Include\目录,检索是否有windows.h文件

 

标签:SDKs,windows,Microsoft,source,cannot,Windows,Include,目录,SDK
来源: https://www.cnblogs.com/live41/p/16683338.html