diff options
| author | Fuwn <[email protected]> | 2022-01-03 03:20:12 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-03 03:20:12 -0800 |
| commit | 85db2b507f3f69b32811c54a89d9ac7bbbc46121 (patch) | |
| tree | 2efd66da452f8a6a2cc6c91584c925f237506ddf /crates/windows-kernel-sys/src/lib.rs | |
| download | driver-85db2b507f3f69b32811c54a89d9ac7bbbc46121.tar.xz driver-85db2b507f3f69b32811c54a89d9ac7bbbc46121.zip | |
feat(driver): commit primer
Diffstat (limited to 'crates/windows-kernel-sys/src/lib.rs')
| -rw-r--r-- | crates/windows-kernel-sys/src/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/windows-kernel-sys/src/lib.rs b/crates/windows-kernel-sys/src/lib.rs new file mode 100644 index 0000000..f41736c --- /dev/null +++ b/crates/windows-kernel-sys/src/lib.rs @@ -0,0 +1,13 @@ +#![no_std] +#![feature(untagged_unions)] + +pub mod base; + +#[cfg(feature = "intrin")] +pub mod intrin; +#[cfg(feature = "netio")] +pub mod netio; +#[cfg(feature = "ntoskrnl")] +pub mod ntoskrnl; + +pub use cty::*; |