]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Protocol/Reset.h
Use doxygen comment style for document entity such as struct, enum, variable that...
[mirror_edk2.git] / MdePkg / Include / Protocol / Reset.h
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 No CRC of the EFI system table is required, as it is done in the DXE core.
10
11 Copyright (c) 2006 - 2008, Intel Corporation
12 All rights reserved. This program and the accompanying materials
13 are licensed and made available under the terms and conditions of the BSD License
14 which accompanies this distribution. The full text of the license may be found at
15 http://opensource.org/licenses/bsd-license.php
16
17 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19
20 **/
21
22 #ifndef __ARCH_PROTOCOL_RESET_H__
23 #define __ARCH_PROTOCOL_RESET_H__
24
25 ///
26 /// Global ID for the Reset Architectural Protocol
27 ///
28 #define EFI_RESET_ARCH_PROTOCOL_GUID \
29 { 0x27CFAC88, 0x46CC, 0x11d4, {0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } }
30
31 extern EFI_GUID gEfiResetArchProtocolGuid;
32
33 #endif