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