//! Hikari EFI Boot Services Constants pub const OPEN_PROTOCOL_BY_HANDLE_PROTOCOL: u32 = 0x00000001; pub const OPEN_PROTOCOL_GET_PROTOCOL: u32 = 0x00000002; pub const OPEN_PROTOCOL_TEST_PROTOCOL: u32 = 0x00000004; pub const OPEN_PROTOCOL_BY_CHILD_CONTROLLER: u32 = 0x00000008; pub const OPEN_PROTOCOL_BY_DRIVER: u32 = 0x00000010; pub const OPEN_PROTOCOL_EXCLUSIVE: u32 = 0x00000020; pub const TPL_APPLICATION: usize = 4; pub const TPL_CALLBACK: usize = 8; pub const TPL_NOTIFY: usize = 16; pub const TPL_HIGH_LEVEL: usize = 31; pub const EVENT_TIMER: u32 = 0x80000000; pub const EVENT_RUNTIME: u32 = 0x40000000; pub const EVENT_NOTIFY_WAIT: u32 = 0x00000100; pub const EVENT_NOTIFY_SIGNAL: u32 = 0x00000200; pub const EVENT_SIGNAL_EXIT_BOOT_SERVICES: u32 = 0x00000201; pub const EVENT_SIGNAL_VIRTUAL_ADDRESS_CHANGE: u32 = 0x60000202;