Home | History | Annotate | Download | only in Guid
      1 /** @file
      2   Guid is for GUIDED HOB of LDR memory descriptor.
      3 
      4 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
      5 This program and the accompanying materials
      6 are licensed and made available under the terms and conditions of the BSD License
      7 which accompanies this distribution.  The full text of the license may be found at
      8 http://opensource.org/licenses/bsd-license.php
      9 
     10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     12 
     13 **/
     14 
     15 #ifndef __LDR_MEMORY_DESCRIPTOR__
     16 #define __LDR_MEMORY_DESCRIPTOR__
     17 
     18 #define LDR_MEMORY_DESCRIPTOR_GUID \
     19   { 0x7701d7e5, 0x7d1d, 0x4432, {0xa4, 0x68, 0x67, 0x3d, 0xab, 0x8a, 0xde, 0x60}}
     20 
     21 #pragma pack(1)
     22 
     23 typedef struct {
     24   EFI_HOB_GUID_TYPE             Hob;
     25   UINTN                         MemDescCount;
     26   EFI_MEMORY_DESCRIPTOR         *MemDesc;
     27 } MEMORY_DESC_HOB;
     28 
     29 #pragma pack()
     30 
     31 extern EFI_GUID gLdrMemoryDescriptorGuid;
     32 
     33 #endif
     34