1 /** @file 2 Reset Architectural Protocol as defined in PI Specification VOLUME 2 DXE 3 4 Used to provide ResetSystem runtime services 5 6 The ResetSystem () UEFI 2.0 service is added to the EFI system table and the 7 EFI_RESET_ARCH_PROTOCOL_GUID protocol is registered with a NULL pointer. 8 9 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR> 10 This program and the accompanying materials 11 are licensed and made available under the terms and conditions of the BSD License 12 which accompanies this distribution. The full text of the license may be found at 13 http://opensource.org/licenses/bsd-license.php 14 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17 18 **/ 19 20 #ifndef __ARCH_PROTOCOL_RESET_H__ 21 #define __ARCH_PROTOCOL_RESET_H__ 22 23 /// 24 /// Global ID for the Reset Architectural Protocol 25 /// 26 #define EFI_RESET_ARCH_PROTOCOL_GUID \ 27 { 0x27CFAC88, 0x46CC, 0x11d4, {0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } } 28 29 extern EFI_GUID gEfiResetArchProtocolGuid; 30 31 #endif 32