]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Guid/VariableInfo.h
Add comments and DoxyGen format for these files.
[mirror_edk2.git] / MdeModulePkg / Include / Guid / VariableInfo.h
CommitLineData
504214c4 1/** @file\r
33a5a666 2\r
504214c4
LG
3 GUIDs used for variable list entries put in the EFI system table.\r
4\r
5Copyright (c) 2006 - 2008, Intel Corporation\r
33a5a666
A
6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
504214c4 14**/\r
33a5a666
A
15\r
16#ifndef __VARIABLE_INFO_GUID_H__\r
17#define __VARIABLE_INFO_GUID_H__\r
18\r
19// {DDCF3616-3275-4164-98B6-FE85707FFE7D}\r
20#define EFI_VARIABLE_INFO_GUID \\r
21 { 0xddcf3616, 0x3275, 0x4164, { 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d } }\r
22\r
23extern EFI_GUID gEfiVariableInfoGuid;\r
24\r
25\r
26typedef struct _VARIABLE_INFO_ENTRY VARIABLE_INFO_ENTRY;\r
27\r
28//\r
29// This list gets put in the EFI system table. It is produced by the Variable driver at\r
30// Boot Services time and records read and write access to a given variable\r
31//\r
32struct _VARIABLE_INFO_ENTRY {\r
33 VARIABLE_INFO_ENTRY *Next;\r
34 EFI_GUID VendorGuid;\r
35 CHAR16 *Name;\r
36 UINT32 Attributes;\r
37 UINT32 ReadCount;\r
38 UINT32 WriteCount;\r
39 UINT32 DeleteCount;\r
40 UINT32 CacheCount;\r
41 BOOLEAN Volatile;\r
42};\r
43\r
44\r
45#endif\r