1 /*++ 2 3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR> 4 5 This program and the accompanying materials are licensed and made available under 7 the terms and conditions of the BSD License that accompanies this distribution. 9 The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php. 13 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 21 23 24 25 Module Name: 26 27 MemoryConfigData.h 28 29 Abstract: 30 31 GUID used for Memory Configuration Data entries in the HOB list. 32 33 --*/ 34 35 #ifndef _MEMORY_CONFIG_DATA_GUID_H_ 36 #define _MEMORY_CONFIG_DATA_GUID_H_ 37 38 #define EFI_MEMORY_CONFIG_DATA_GUID \ 39 { \ 40 0x80dbd530, 0xb74c, 0x4f11, 0x8c, 0x03, 0x41, 0x86, 0x65, 0x53, 0x28, 0x31 \ 41 } 42 43 extern EFI_GUID gEfiMemoryConfigDataGuid; 44 extern CHAR16 EfiMemoryConfigVariable[]; 45 46 #endif 47