]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Reset/Reset.h
1a7835f1cad8f6bf93a25ed69e5908467ed2ab9f
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Core / Dxe / ArchProtocol / Reset / Reset.h
1 /*++
2
3 Copyright (c) 2004, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 Reset.h
15
16 Abstract:
17
18 Reset Architectural Protocol as defined in the DXE CIS
19
20 Used to provide ResetSystem runtime services
21
22 The ResetSystem () EFI 1.0 service is added to the EFI system table and the
23 EFI_RESET_ARCH_PROTOCOL_GUID protocol is registered with a NULL pointer.
24
25 No CRC of the EFI system table is required, as it is done in the DXE core.
26
27 --*/
28
29 #ifndef _ARCH_PROTOCOL_RESET_H_
30 #define _ARCH_PROTOCOL_RESET_H_
31
32 //
33 // Global ID for the Reset Architectural Protocol
34 //
35 #define EFI_RESET_ARCH_PROTOCOL_GUID \
36 { 0x27CFAC88, 0x46CC, 0x11d4, {0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D} }
37
38 extern EFI_GUID gEfiResetArchProtocolGuid;
39
40 #endif