]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/Library/EdkRtPlatformStatusCodeLib.h
Check in patch to refine DevicePath Module and USB2HostController Module.
[mirror_edk2.git] / EdkModulePkg / Include / Library / EdkRtPlatformStatusCodeLib.h
1 /*++
2
3 Copyright (c) 2006, 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 RtPlatformStatusCodeLib.h
15
16 Abstract:
17
18 Lib to provide platform implementations necessary for the Monolithic status
19 code to work.
20
21 --*/
22
23 #ifndef _EFI_PLATFORM_STATUS_CODE_LIB_H_
24 #define _EFI_PLATFORM_STATUS_CODE_LIB_H_
25
26
27 //
28 // Initialization function
29 //
30 VOID
31 RtPlatformStatusCodeInitialize (
32 VOID
33 )
34 ;
35
36 //
37 // Status code reporting function
38 //
39 EFI_STATUS
40 RtPlatformReportStatusCode (
41 IN EFI_STATUS_CODE_TYPE CodeType,
42 IN EFI_STATUS_CODE_VALUE Value,
43 IN UINT32 Instance,
44 IN EFI_GUID * CallerId,
45 IN EFI_STATUS_CODE_DATA * Data OPTIONAL
46 )
47 ;
48
49 #endif