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