registry_pol/lib.rs
1//! The Group Policy Object Editor stores registry-based configuration settings in two Registry.pol files, stored in folders
2//! under the `<drive>:\Windows\System32\GroupPolicy\` folder. One file contains computer settings and the other file contains
3//! user settings. The Group Policy Object Editor saves the settings to these files on exit, and imports the settings on
4//! startup.
5//!
6//! This library does not and will never depend on any Windows-specific libraries and will therefore work on any system.
7
8
9#[macro_use]
10extern crate nom;
11#[macro_use]
12extern crate lazy_static;
13
14pub mod v1;
15
16pub use self::v1::*;
17
18
19/// First part of header, equivalent to "PReg" in little-endian.
20pub const REGFILE_SIGNATURE: u32 = 0x67655250;