How to generate a WDM driver? #32
Replies: 2 comments 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(())
} |
1 reply
|
Is this still an issue today, since there is |
0 replies
Answer selected by
wmmc88
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this still an issue today, since there is
cargo wdk new --wdm my-wdm-driveror can this discussion be resolved. I think the workaround by Everton Patitucci (@Patuti) isn't required anymore, because the driver type can be set inCargo.tomlaccording to the README.