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.
我想在最新的 WDK 中构建 WDM 驱动程序。WDM 和 WDF 的源文件有什么区别?如何将构建标记指定为 WDM 而不是 WDF?
KMDF 只是一个围绕 WDM 的包装库,因此一个不引用 KMDF 的 SOURCES 文件构建了一个 WDM 驱动程序。通常在 SOURCES 文件中对 KMDF 的唯一引用是:
KMDF_VERSION_MAJOR=1
有关详细信息,请参阅 WDK 文档和示例。
-斯科特