//! Pure-Rust read-only VHDX container reader.
//!
//! Decodes the MS-VHDX outer container format and exposes a `Read + Seek`
//! interface over the virtual sector stream.
//!
//! # Supported formats
//! - VHDX Version 1 (Windows 8+ / Server 2012+)
//! - Dynamic disks
//! - Fixed disks
//!
//! # Layer
//! CONTAINER — equivalent role to `ewf` for E01 images.
pub use ;
pub use VhdxReader;
/// Well-known VHDX file magic (first 8 bytes of every VHDX file).
pub const FILE_MAGIC: & = b"vhdxfile";