r_efi/protocols/
load_file2.rs

1//! Load File 2 Protocol
2//!
3//! The Load File 2 protocol is used to obtain files from arbitrary devices
4//! that are not boot options.
5
6pub const PROTOCOL_GUID: crate::base::Guid = crate::base::Guid::from_fields(
7    0x4006c0c1,
8    0xfcb3,
9    0x403e,
10    0x99,
11    0x6d,
12    &[0x4a, 0x6c, 0x87, 0x24, 0xe0, 0x6d],
13);
14
15pub type Protocol = crate::protocols::load_file::Protocol;