bootmgr-rs-core 0.16.5

A framework for easily creating boot managers in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2025 some100 <ootinnyoo@outlook.com>
// SPDX-License-Identifier: MIT

//! A parser for the Windows BCD and Windows boot manager.

#[cfg(feature = "windows_bcd")]
pub mod windows_bcd;

#[cfg(feature = "windows_bcd")]
pub use windows_bcd::WinConfig;

#[cfg(not(feature = "windows_bcd"))]
pub mod windows_auto;

#[cfg(not(feature = "windows_bcd"))]
pub use windows_auto::WinConfig;