]> git.proxmox.com Git - mirror_edk2.git/blob - EdkModulePkg/Include/Guid/MemoryTypeInformation.h
Ensure the validity of Ffs Sections when adding a new Sections to Ffs.
[mirror_edk2.git] / EdkModulePkg / Include / Guid / MemoryTypeInformation.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13 MemoryTypeInformation.h
14
15 Abstract:
16 GUID used for Memory Type Information entries in the HOB list.
17
18 --*/
19
20 #ifndef __MEMORY_TYPE_INFORMATION_GUID_H__
21 #define __MEMORY_TYPE_INFORMATION_GUID_H__
22
23 #define EFI_MEMORY_TYPE_INFORMATION_GUID \
24 { 0x4c19049f,0x4137,0x4dd3, { 0x9c,0x10,0x8b,0x97,0xa8,0x3f,0xfd,0xfa } }
25
26 #define EFI_MEMORY_TYPE_INFORMATION_VARIABLE_NAME L"MemoryTypeInformation"
27
28 extern EFI_GUID gEfiMemoryTypeInformationGuid;
29
30 typedef struct {
31 UINT32 Type;
32 UINT32 NumberOfPages;
33 } EFI_MEMORY_TYPE_INFORMATION;
34
35 #endif