1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! # regf - Windows Registry Hive File Parser
//!
//! This crate provides functionality for parsing, manipulating, and writing
//! Windows Registry hive files (regf format).
//!
//! ## Features
//!
//! - Parse regf/dat registry hive files
//! - Read and modify registry keys and values
//! - Write registry data back to disk
//! - Export to .reg text format
//! - Import from .reg text format
//!
//! ## Example
//!
//! ```no_run
//! use regf::RegistryHive;
//!
//! // Load a registry hive
//! let hive = RegistryHive::from_file("NTUSER.DAT").unwrap();
//!
//! // Get the root key
//! let root = hive.root_key().unwrap();
//!
//! // Iterate through subkeys
//! for subkey in root.subkeys().unwrap() {
//! println!("Key: {}", subkey.name());
//! }
//! ```
pub use ;
pub use RegistryHive;
pub use *;
pub use TransactionLog;
pub use ;
pub use ;