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.
我正在尝试在我的 C++ WinAPI 应用程序中包含 Ntddvdeo 库,但出现错误Error: Cannot open source file Ntddvdeo.h
Error: Cannot open source file Ntddvdeo.h
如何在我的程序中包含 Ntddvdeo.h?
我需要包含它只是为了使用一个变量,即 GUID_DEVINTERFACE_MONITOR 变量。关于如何包含图书馆的任何建议?我是否需要包含特定的 dll 或 lib?
ntddvdeo.h 是 Windows 驱动程序工具包中的头文件。如果您只需要 GUID 的值,您可以自己在代码中的某个位置定义它。
// // Monitor device interface // {E6F07B5F-EE97-4a90-B076-33F57BF4EAA7} DEFINE_GUID(GUID_DEVINTERFACE_MONITOR, 0xe6f07b5f, 0xee97, 0x4a90, 0xb0, 0x76, 0x33, 0xf5, 0x7b, 0xf4, 0xea, 0xa7);