diff options
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::*; |