]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Universal/UserInterface/SetupBrowser/Dxe/DriverSample/NVDataStruc.h
Initial import.
[mirror_edk2.git] / EdkModulePkg / Universal / UserInterface / SetupBrowser / Dxe / DriverSample / 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 #define FORMSET_GUID \
28 { \
29 0xA04A27f4, 0xDF00, 0x4D42, { 0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D } \
30 }
31
32 #define INVENTORY_GUID \
33 { \
34 0xb3f56470, 0x6141, 0x4621, { 0x8f, 0x19, 0x70, 0x4e, 0x57, 0x7a, 0xa9, 0xe8 } \
35 }
36
37 #define VAR_EQ_TEST_NAME 0x100
38
39 #pragma pack(1)
40 typedef struct {
41 UINT16 WhatIsThePassword[20];
42 UINT16 WhatIsThePassword2[20];
43 UINT16 MyStringData[20];
44 UINT16 SomethingHiddenForHtml;
45 UINT8 HowOldAreYouInYearsManual;
46 UINT16 HowTallAreYouManual;
47 UINT8 HowOldAreYouInYears;
48 UINT16 HowTallAreYou;
49 UINT8 MyFavoriteNumber;
50 UINT8 TestLateCheck;
51 UINT8 TestLateCheck2;
52 UINT8 QuestionAboutTreeHugging;
53 UINT8 ChooseToActivateNuclearWeaponry;
54 UINT8 SuppressGrayOutSomething;
55 UINT8 OrderedList[8];
56 UINT8 BootOrder[8];
57 UINT8 BootOrderLarge;
58 UINT8 DynamicCheck;
59 } MyIfrNVData;
60 #pragma pack()
61
62 #endif