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