#![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.");