]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Ppi/StatusCode.h
Updated headers to follow coding standard
[mirror_edk2.git] / MdePkg / Include / Ppi / StatusCode.h
1 /** @file
2 This file declares Status Code PPI.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 @par Revision Reference:
14 This PPI is defined in PI.
15 Version 1.00.
16
17 **/
18
19 #ifndef __STATUS_CODE_PPI_H__
20 #define __STATUS_CODE_PPI_H__
21
22 #define EFI_PEI_REPORT_PROGRESS_CODE_PPI_GUID \
23 { 0x229832d3, 0x7a30, 0x4b36, {0xb8, 0x27, 0xf4, 0xc, 0xb7, 0xd4, 0x54, 0x36 } }
24
25 /**
26 @par Ppi Description:
27 This ppi provides the sevice to report status code. There can be only one instance
28 of this service in the system.
29
30 @param ReportStatusCode
31 Service that allows PEIMs to report status codes. This function is defined in Peicis.h
32
33 **/
34 typedef struct {
35 EFI_PEI_REPORT_STATUS_CODE ReportStatusCode;
36 } EFI_PEI_PROGRESS_CODE_PPI;
37
38 extern EFI_GUID gEfiPeiStatusCodePpiGuid;
39
40 #endif