Skip to main content

winreg_format/
lib.rs

1//! Windows Registry (REGF) binary format definitions.
2//!
3//! Pure type definitions with zero I/O. All structs derive `BinRead` for
4//! declarative parsing from byte streams.
5
6pub mod bytes;
7pub mod cells;
8pub mod flags;
9pub mod hbin;
10pub mod header;
11pub mod version;