]> git.proxmox.com Git - mirror_edk2.git/blob - OldMdePkg/Include/Dxe/ArchProtocol/Variable.h
Moved the MdePkg to OldMdePkg so that new code in MdePkg does not break existing...
[mirror_edk2.git] / OldMdePkg / Include / Dxe / ArchProtocol / Variable.h
1 /** @file
2 Variable Architectural Protocol as defined in the DXE CIS
3
4 This code is used to produce the EFI 1.0 runtime variable services
5
6 The GetVariable (), GetNextVariableName (), and SetVariable () EFI 1.0
7 services are added to the EFI system table and the
8 EFI_VARIABLE_ARCH_PROTOCOL_GUID protocol is registered with a NULL pointer.
9
10 No CRC of the EFI system table is required, as it is done in the DXE core.
11
12 Copyright (c) 2006, Intel Corporation
13 All rights reserved. This program and the accompanying materials
14 are licensed and made available under the terms and conditions of the BSD License
15 which accompanies this distribution. The full text of the license may be found at
16 http://opensource.org/licenses/bsd-license.php
17
18 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
19 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
20
21 Module Name: Variable.h
22
23 @par Revision Reference:
24 Version 0.91B.
25
26 **/
27
28 #ifndef __ARCH_PROTOCOL_VARIABLE_ARCH_H__
29 #define __ARCH_PROTOCOL_VARIABLE_ARCH_H__
30
31 //
32 // Global ID for the Variable Architectural Protocol
33 //
34 #define EFI_VARIABLE_ARCH_PROTOCOL_GUID \
35 { 0x1e5668e2, 0x8481, 0x11d4, {0xbc, 0xf1, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } }
36
37 extern EFI_GUID gEfiVariableArchProtocolGuid;
38
39 #endif