r_efi/protocols/
hii_package_list.rs

1//! Human Interface Infrastructure (HII) Package List Protocol
2//!
3//! Installed onto an image handle during load if the image contains a custom PE/COFF
4//! resource with type 'HII'. The protocol's interface pointer points to the HII package
5//! list which is contained in the resource's data.
6
7pub const PROTOCOL_GUID: crate::base::Guid = crate::base::Guid::from_fields(
8    0x6a1ee763,
9    0xd47a,
10    0x43b4,
11    0xaa,
12    0xbe,
13    &[0xef, 0x1d, 0xe2, 0xab, 0x56, 0xfc],
14);