1 | /** @file
|
---|
2 | GUID for system configuration table entry that points to the table
|
---|
3 | in case an entity in DXE wishes to update/change the vector table contents.
|
---|
4 |
|
---|
5 | Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | @par Revision Reference:
|
---|
9 | GUID defined in PI 1.2.1 spec.
|
---|
10 | **/
|
---|
11 |
|
---|
12 | #ifndef __EFI_VECTOR_HANDOFF_TABLE_H__
|
---|
13 | #define __EFI_VECTOR_HANDOFF_TABLE_H__
|
---|
14 |
|
---|
15 | #include <Ppi/VectorHandoffInfo.h>
|
---|
16 |
|
---|
17 | //
|
---|
18 | // System configuration table entry that points to the table
|
---|
19 | // in case an entity in DXE wishes to update/change the vector
|
---|
20 | // table contents.
|
---|
21 | //
|
---|
22 | #define EFI_VECTOR_HANDOF_TABLE_GUID \
|
---|
23 | { 0x996ec11c, 0x5397, 0x4e73, { 0xb5, 0x8f, 0x82, 0x7e, 0x52, 0x90, 0x6d, 0xef }}
|
---|
24 |
|
---|
25 | extern EFI_GUID gEfiVectorHandoffTableGuid;
|
---|
26 |
|
---|
27 | #endif
|
---|