]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Include/Guid/LegacyDevOrder.h
IntelFrameworkModulePkg: Clean up source files
[mirror_edk2.git] / IntelFrameworkModulePkg / Include / Guid / LegacyDevOrder.h
CommitLineData
e24fc103
LG
1/** @file\r
2 Guid of a NV Variable which store the information about the\r
3 FD/HD/CD/NET/BEV order.\r
4\r
0a6f4824
LG
5Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>\r
6This program and the accompanying materials are licensed and made available under\r
7the terms and conditions of the BSD License that accompanies this distribution.\r
e24fc103 8The full text of the license may be found at\r
0a6f4824
LG
9http://opensource.org/licenses/bsd-license.php.\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
e24fc103
LG
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef __LEGACY_DEV_ORDER_VARIABLE_GUID_H__\r
17#define __LEGACY_DEV_ORDER_VARIABLE_GUID_H__\r
18\r
19///\r
20/// Name and Guid of a NV Variable which stores the information about the\r
21/// FD/HD/CD/NET/BEV order\r
22///\r
23#define EFI_LEGACY_DEV_ORDER_VARIABLE_GUID \\r
24 { \\r
25 0xa56074db, 0x65fe, 0x45f7, {0xbd, 0x21, 0x2d, 0x2b, 0xdd, 0x8e, 0x96, 0x52} \\r
26 }\r
27\r
28typedef UINT8 BBS_TYPE;\r
29\r
30#pragma pack(1)\r
31typedef struct {\r
32 BBS_TYPE BbsType;\r
33 ///\r
34 /// Length = sizeof (UINT16) + sizeof (Data)\r
35 ///\r
36 UINT16 Length;\r
37 UINT16 Data[1];\r
38} LEGACY_DEV_ORDER_ENTRY;\r
39#pragma pack()\r
40\r
41#define VAR_LEGACY_DEV_ORDER L"LegacyDevOrder"\r
42\r
43extern EFI_GUID gEfiLegacyDevOrderVariableGuid;\r
44\r
45#endif\r