summaryrefslogtreecommitdiffstats
path: root/UefiPayloadPkg/Include/Guid/BootManagerMenu.h
blob: 36ea4519891eb8d8cfa25c7f64e632f8cab1d67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/** @file
  Define the structure for the Boot Manager Menu File.

Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#ifndef UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_H_
#define UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_H_

#include <Uefi.h>
#include <UniversalPayload/UniversalPayload.h>

#pragma pack (1)

typedef struct {
  UNIVERSAL_PAYLOAD_GENERIC_HEADER    Header;
  GUID                                FileName;
} UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU;

#pragma pack()

#define UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_REVISION  1

extern GUID  gEdkiiBootManagerMenuFileGuid;
#endif