summaryrefslogtreecommitdiffstats
path: root/OptionRomPkg/DriverHealthDxe/NVDataStruc.h
blob: 439fd68de585caa6a00ef8de22f10dd470e1b3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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