]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Ppi/StatusCode.h
21eec0fe79fc015d74fb4a61edc62f65a6fd43cf
[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 Module Name: StatusCode.h
14
15 @par Revision Reference:
16 This PPI is defined in PI.
17 Version 1.00.
18
19 **/
20
21 #ifndef __STATUS_CODE_PPI_H__
22 #define __STATUS_CODE_PPI_H__
23
24 #define EFI_PEI_REPORT_PROGRESS_CODE_PPI_GUID \
25 { 0x229832d3, 0x7a30, 0x4b36, {0xb8, 0x27, 0xf4, 0xc, 0xb7, 0xd4, 0x54, 0x36 } }
26
27 /**
28 @par Ppi Description:
29 This ppi provides the sevice to report status code. There can be only one instance
30 of this service in the system.
31
32 @param ReportStatusCode
33 Service that allows PEIMs to report status codes. This function is defined in Peicis.h
34
35 **/
36 typedef struct {
37 EFI_PEI_REPORT_STATUS_CODE ReportStatusCode;
38 } EFI_PEI_PROGRESS_CODE_PPI;
39
40 extern EFI_GUID gEfiPeiStatusCodePpiGuid;
41
42 #endif