]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Include/Guid/MemoryTypeInformation.h
[Change summary]:
[mirror_edk2.git] / MdeModulePkg / Include / Guid / MemoryTypeInformation.h
CommitLineData
1e354c03 1/** @file\r
e40b7d5d
LG
2 This file defines:\r
3 * Memory Type Information GUID for HOB and Variable\r
4 * Memory Type Information Variable Name\r
5 * Memory Type Information GUID HOB data structure\r
88f20127 6\r
e40b7d5d
LG
7 The memory type information HOB and variable can \r
8 be used to store the information for each memory type in Variable or HOB.\r
9\r
10Copyright (c) 2006 - 2009, Intel Corporation. <BR>\r
1e354c03 11All rights reserved. This program and the accompanying materials\r
12are licensed and made available under the terms and conditions of the BSD License\r
13which accompanies this distribution. The full text of the license may be found at\r
14http://opensource.org/licenses/bsd-license.php\r
15\r
16THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
18\r
19**/\r
88f20127 20\r
21#ifndef __MEMORY_TYPE_INFORMATION_GUID_H__\r
22#define __MEMORY_TYPE_INFORMATION_GUID_H__\r
23\r
24#define EFI_MEMORY_TYPE_INFORMATION_GUID \\r
25 { 0x4c19049f,0x4137,0x4dd3, { 0x9c,0x10,0x8b,0x97,0xa8,0x3f,0xfd,0xfa } }\r
26\r
27#define EFI_MEMORY_TYPE_INFORMATION_VARIABLE_NAME L"MemoryTypeInformation"\r
28\r
29extern EFI_GUID gEfiMemoryTypeInformationGuid;\r
30\r
31typedef struct {\r
4a13fda7 32 UINT32 Type; ///< EFI memory type defined in UEFI specification.\r
33 UINT32 NumberOfPages; ///< The pages of this type memory.\r
88f20127 34} EFI_MEMORY_TYPE_INFORMATION;\r
35\r
36#endif\r