1 /** @file 2 GUIDs used for HOB List entries 3 4 These GUIDs point the HOB List passed from PEI to DXE. 5 6 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> 7 SPDX-License-Identifier: BSD-2-Clause-Patent 8 9 @par Revision Reference: 10 GUID introduced in PI Version 1.0. 11 12 **/ 13 14 #ifndef __HOB_LIST_GUID_H__ 15 #define __HOB_LIST_GUID_H__ 16 17 #define HOB_LIST_GUID \ 18 { \ 19 0x7739f24c, 0x93d7, 0x11d4, {0x9a, 0x3a, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \ 20 } 21 22 extern EFI_GUID gEfiHobListGuid; 23 24 #endif 25