2

尝试构建驱动程序时出现此错误:

Driver.cpp(7): 致命错误 C1083: 无法打开包含文件: 'ntddk.h': 没有这样的文件或目录

我正在使用安装了 WDK 8.1 的 Visual Studio 2012(我没有在 VS 中配置任何东西)。

任何帮助表示赞赏。

4

3 回答 3

3

Go to project properties -> C/C++ -> General, and add ddk headers path to Additional Include Directories tab. It should be sth like $(WDKPATH)\inc\ddk where $(WDKPATH) is ofc a directory where You have installed WDK.

于 2013-10-26T18:35:48.253 回答
2

您需要适用于 WDK 8.1 的 Visual Studio 2013

报价

重要提示:在安装 WDK 8.1 更新之前,您需要安装 Visual Studio 2013。请参阅此页面上的 Visual Studio 链接。

于 2014-11-27T18:17:04.607 回答
0

我正在使用 Visual Studio 2017,在尝试编译驱动程序时遇到了同样的问题。

解决方案帮助我:
您需要将 WDK 标头路径添加到您的 vcxproj 包含目录:
vcxproj properties -> C/C++ -> General -> Additional Include Directories

C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0\km\
于 2021-07-28T06:42:19.723 回答