]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/ReadOnlyVariable.h
Remove BugBug in comments and adjust function header according to code style doc.
[mirror_edk2.git] / MdePkg / Include / Ppi / ReadOnlyVariable.h
Content-type: text/html ]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/ReadOnlyVariable.h


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 6) line 1, <$fd> line 108.
CommitLineData
878ddf1f 1/** @file\r
2 This file declares Read-only Variable Service PPI\r
3\r
4 Copyright (c) 2006, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13 Module Name: ReadOnlyVariable.h\r
14\r
15 @par Revision Reference:\r
16 This PPI is defined in PEI CIS\r
17 Version 0.91.\r
18\r
19**/\r
20\r
21#ifndef __PEI_READ_ONLY_VARIABLE_PPI_H__\r
22#define __PEI_READ_ONLY_VARIABLE_PPI_H__\r
23\r
24#define EFI_PEI_READ_ONLY_VARIABLE_ACCESS_PPI_GUID \\r
25 { \\r
26 0x3cdc90c6, 0x13fb, 0x4a75, {0x9e, 0x79, 0x59, 0xe9, 0xdd, 0x78, 0xb9, 0xfa } \\r
27 }\r
28\r
29typedef struct _EFI_PEI_READ_ONLY_VARIABLE_PPI EFI_PEI_READ_ONLY_VARIABLE_PPI;\r
30\r
31//\r
32// Variable attributes\r
33//\r
34#define EFI_VARIABLE_NON_VOLATILE 0x00000001\r
35#define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x00000002\r
36#define EFI_VARIABLE_RUNTIME_ACCESS 0x00000004\r
37#define EFI_VARIABLE_READ_ONLY 0x00000008\r
38\r
39/**\r
40 Get Variable value by Name and GUID pair\r
41\r
0647c9ad
LG
42 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.\r
43