diff options
Diffstat (limited to 'OptionRomPkg/DriverHealthDxe/NVDataStruc.h')
-rw-r--r-- | OptionRomPkg/DriverHealthDxe/NVDataStruc.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/OptionRomPkg/DriverHealthDxe/NVDataStruc.h b/OptionRomPkg/DriverHealthDxe/NVDataStruc.h new file mode 100644 index 0000000000..439fd68de5 --- /dev/null +++ b/OptionRomPkg/DriverHealthDxe/NVDataStruc.h @@ -0,0 +1,35 @@ +/*++
+
+Copyright (c) 2006 - 2009, Intel Corporation
+All rights reserved. This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
+http://opensource.org/licenses/bsd-license.php
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+Module Name:
+
+ NVDataStruc.h
+
+Abstract:
+
+ NVData structure used by the sample driver
+
+Revision History:
+
+--*/
+
+#ifndef _NVDATASTRUC_H
+#define _NVDATASTRUC_H
+
+#define EFI_CALLER_ID_GUID {0xD1D9694C, 0x90B4, 0x46a7, {0x87, 0x53, 0x60, 0x41, 0x3C, 0xEF, 0xE0, 0xA1}}
+
+#pragma pack(1)
+typedef struct {
+ UINT8 ConfigGood;
+} DISK_IO_NV_DATA;
+#pragma pack()
+
+#endif
|