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, Intel Corporation. All rights reserved.<BR> 6 This program and the accompanying materials 7 are licensed and made available under the terms and conditions of the BSD License 8 which accompanies this distribution. The full text of the license may be found at 9 http://opensource.org/licenses/bsd-license.php 10 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 14 @par Revision Reference: 15 GUID defined in PI 1.2.1 spec. 16 **/ 17 18 #ifndef __EFI_VECTOR_HANDOFF_TABLE_H__ 19 #define __EFI_VECTOR_HANDOFF_TABLE_H__ 20 21 #include <Ppi/VectorHandoffInfo.h> 22 23 // 24 // System configuration table entry that points to the table 25 // in case an entity in DXE wishes to update/change the vector 26 // table contents. 27 // 28 #define EFI_VECTOR_HANDOF_TABLE_GUID \ 29 { 0x996ec11c, 0x5397, 0x4e73, { 0xb5, 0x8f, 0x82, 0x7e, 0x52, 0x90, 0x6d, 0xef }} 30 31 extern EFI_GUID gEfiVectorHandoffTableGuid; 32 33 #endif 34