1 | /** @file
|
---|
2 | EFI SMM Status Code Protocol as defined in the PI 1.2 specification.
|
---|
3 |
|
---|
4 | This protocol provides the basic status code services while in SMM.
|
---|
5 |
|
---|
6 | Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
7 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 |
|
---|
9 | **/
|
---|
10 |
|
---|
11 | #ifndef _SMM_STATUS_CODE_H__
|
---|
12 | #define _SMM_STATUS_CODE_H__
|
---|
13 |
|
---|
14 | #include <Protocol/MmStatusCode.h>
|
---|
15 |
|
---|
16 | #define EFI_SMM_STATUS_CODE_PROTOCOL_GUID EFI_MM_STATUS_CODE_PROTOCOL_GUID
|
---|
17 |
|
---|
18 | typedef EFI_MM_STATUS_CODE_PROTOCOL EFI_SMM_STATUS_CODE_PROTOCOL;
|
---|
19 |
|
---|
20 | typedef EFI_MM_REPORT_STATUS_CODE EFI_SMM_REPORT_STATUS_CODE;
|
---|
21 |
|
---|
22 | extern EFI_GUID gEfiSmmStatusCodeProtocolGuid;
|
---|
23 |
|
---|
24 | #endif
|
---|