win-drives 0.1.0

Low-level access to Windows physical drives and harddisk volumes via NT APIs, with no_std support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

mod types;
mod volume;
mod physical;
mod api;

pub use types::*;
pub use volume::*;
pub use physical::*;

#[cfg(not(target_os = "windows"))]
compile_error!("win-drives only supports Windows. This crate uses Windows-specific NT APIs and cannot be compiled on other platforms.");