]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Universal/DriverSampleDxe/NVDataStruc.h
Correct all header files for doxygen format and correct the license issue for VgaClas...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / DriverSampleDxe / NVDataStruc.h
CommitLineData
3db51098 1/**@file\r
2 NVData structure used by the sample driver\r
103b6520 3\r
35fec2c4 4Copyright (c) 2006, Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
103b6520 12\r
3db51098 13**/\r
103b6520 14\r
15#ifndef _NVDATASTRUC_H\r
16#define _NVDATASTRUC_H\r
17\r
103b6520 18\r
19#define FORMSET_GUID \\r
20 { \\r
21 0xA04A27f4, 0xDF00, 0x4D42, { 0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D } \\r
22 }\r
23\r
24#define INVENTORY_GUID \\r
25 { \\r
26 0xb3f56470, 0x6141, 0x4621, { 0x8f, 0x19, 0x70, 0x4e, 0x57, 0x7a, 0xa9, 0xe8 } \\r
27 }\r
28\r
29#define VAR_EQ_TEST_NAME 0x100\r
30\r
31#pragma pack(1)\r
32typedef struct {\r
33 UINT16 WhatIsThePassword[20];\r
34 UINT16 WhatIsThePassword2[20];\r
35 UINT16 MyStringData[20];\r
36 UINT16 SomethingHiddenForHtml;\r
37 UINT8 HowOldAreYouInYearsManual;\r
38 UINT16 HowTallAreYouManual;\r
39 UINT8 HowOldAreYouInYears;\r
40 UINT16 HowTallAreYou;\r
41 UINT8 MyFavoriteNumber;\r
42 UINT8 TestLateCheck;\r
43 UINT8 TestLateCheck2;\r
44 UINT8 QuestionAboutTreeHugging;\r
45 UINT8 ChooseToActivateNuclearWeaponry;\r
46 UINT8 SuppressGrayOutSomething;\r
47 UINT8 OrderedList[8];\r
48 UINT8 BootOrder[8];\r
49 UINT8 BootOrderLarge;\r
50 UINT8 DynamicCheck;\r
51} MyIfrNVData;\r
52#pragma pack()\r
53\r
54#endif\r