How to generate a WDM driver? #32
Unanswered
willingbug
asked this question in
Q&A
Replies: 1 comment 1 reply
-
|
This is how I did it: // build.rs
fn main() -> Result<(), wdk_build::ConfigError> {
let mut config = wdk_build::Config::from_env_auto()?;
config.driver_config = wdk_build::DriverConfig::WDM();
config.configure_binary_build();
Ok(())
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to generate a WDM driver?
Beta Was this translation helpful? Give feedback.
All reactions