1 | /** @file
|
---|
2 | GUID used to identify HOB for pointers to callback functios registered on
|
---|
3 | PEI report status code router.
|
---|
4 |
|
---|
5 | Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef __STATUS_CODE_CALLBACK_H__
|
---|
11 | #define __STATUS_CODE_CALLBACK_H__
|
---|
12 |
|
---|
13 | #define STATUS_CODE_CALLBACK_GUID \
|
---|
14 | { \
|
---|
15 | 0xe701458c, 0x4900, 0x4ca5, {0xb7, 0x72, 0x3d, 0x37, 0x94, 0x9f, 0x79, 0x27} \
|
---|
16 | }
|
---|
17 |
|
---|
18 | extern EFI_GUID gStatusCodeCallbackGuid;
|
---|
19 |
|
---|
20 | #endif
|
---|