]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Guid/VariableInfo.h
Add function headers & file header for public header files
[mirror_edk2.git] / MdeModulePkg / Include / Guid / VariableInfo.h
CommitLineData
33a5a666
A
1/*++\r
2\r
3Copyright (c) 2006 - 2007, 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
12\r
13--*/\r
14\r
15#ifndef __VARIABLE_INFO_GUID_H__\r
16#define __VARIABLE_INFO_GUID_H__\r
17\r
18// {DDCF3616-3275-4164-98B6-FE85707FFE7D}\r
19#define EFI_VARIABLE_INFO_GUID \\r
20 { 0xddcf3616, 0x3275, 0x4164, { 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d } }\r
21\r
22extern EFI_GUID gEfiVariableInfoGuid;\r
23\r
24\r
25typedef struct _VARIABLE_INFO_ENTRY VARIABLE_INFO_ENTRY;\r
26\r
27//\r
28// This list gets put in the EFI system table. It is produced by the Variable driver at\r
29// Boot Services time and records read and write access to a given variable\r
30//\r
31struct _VARIABLE_INFO_ENTRY {\r
32 VARIABLE_INFO_ENTRY *Next;\r
33 EFI_GUID VendorGuid;\r
34 CHAR16 *Name;\r
35 UINT32 Attributes;\r
36 UINT32 ReadCount;\r
37 UINT32 WriteCount;\r
38 UINT32 DeleteCount;\r
39 UINT32 CacheCount;\r
40 BOOLEAN Volatile;\r
41};\r
42\r
43\r
44#endif\r