开发者

How to build a WDM driver in WDK?

开发者 https://www.devze.com 2023-01-23 23:24 出处:网络
I want to build a WDM driver in the latest WDK. What\'s the di开发者_运维知识库fference between the sources file for WDM and WDF? How can I specify the build taget as WDM instead of WDF?KMDF is just a

I want to build a WDM driver in the latest WDK. What's the di开发者_运维知识库fference between the sources file for WDM and WDF? How can I specify the build taget as WDM instead of WDF?


KMDF is just a wrapper library around WDM, so a SOURCES file with no references to KMDF build a WDM driver. Usually the only reference to KMDF in a SOURCES file is:

KMDF_VERSION_MAJOR=1

See the WDK documentation and samples for more info.

-scott

0

精彩评论

暂无评论...
验证码 换一张
取 消