Last change
on this file since 109091 was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
635 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Define the structure for the Boot Manager Menu File.
|
---|
3 |
|
---|
4 | Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #ifndef UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_H_
|
---|
10 | #define UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_H_
|
---|
11 |
|
---|
12 | #include <Uefi.h>
|
---|
13 | #include <UniversalPayload/UniversalPayload.h>
|
---|
14 |
|
---|
15 | #pragma pack (1)
|
---|
16 |
|
---|
17 | typedef struct {
|
---|
18 | UNIVERSAL_PAYLOAD_GENERIC_HEADER Header;
|
---|
19 | GUID FileName;
|
---|
20 | } UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU;
|
---|
21 |
|
---|
22 | #pragma pack()
|
---|
23 |
|
---|
24 | #define UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_REVISION 1
|
---|
25 |
|
---|
26 | extern GUID gEdkiiBootManagerMenuFileGuid;
|
---|
27 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.