Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
The hypervisor loads on Windows 10 now instead of just 11.
Browse files Browse the repository at this point in the history
Thanks Matthias again :)

microsoft/windows-drivers-rs#42
  • Loading branch information
memN0ps committed Jan 12, 2024
1 parent a7be8da commit 090a9d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions driver/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
fn main() -> Result<(), wdk_build::ConfigError> {
wdk_build::Config::from_env_auto()?.configure_binary_build();
let mut config = wdk_build::Config::from_env_auto()?;
config.driver_config = wdk_build::DriverConfig::WDM();
config.configure_binary_build();
Ok(())
}
}

0 comments on commit 090a9d9

Please sign in to comment.