]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/DriverSampleDxe/NVDataStruc.h
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2920 6f19259b...
[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 // Include common header file for this module.
29 //
30 #include "CommonHeader.h"
31
32 #define FORMSET_GUID \
33 { \
34 0xA04A27f4, 0xDF00, 0x4D42, { 0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D } \
35 }
36
37 #define INVENTORY_GUID \
38 { \
39 0xb3f56470, 0x6141, 0x4621, { 0x8f, 0x19, 0x70, 0x4e, 0x57, 0x7a, 0xa9, 0xe8 } \
40 }
41
42 #define VAR_EQ_TEST_NAME 0x100
43
44 #pragma pack(1)
45 typedef struct {
46 UINT16 WhatIsThePassword[20];
47 UINT16 WhatIsThePassword2[20];
48 UINT16 MyStringData[20];
49 UINT16 SomethingHiddenForHtml;
50 UINT8 HowOldAreYouInYearsManual;
51 UINT16 HowTallAreYouManual;
52 UINT8 HowOldAreYouInYears;
53 UINT16 HowTallAreYou;
54 UINT8 MyFavoriteNumber;
55 UINT8 TestLateCheck;
56 UINT8 TestLateCheck2;
57 UINT8 QuestionAboutTreeHugging;
58 UINT8 ChooseToActivateNuclearWeaponry;
59 UINT8 SuppressGrayOutSomething;
60 UINT8 OrderedList[8];
61 UINT8 BootOrder[8];
62 UINT8 BootOrderLarge;
63 UINT8 DynamicCheck;
64 } MyIfrNVData;
65 #pragma pack()
66
67 #endif