]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Include/Guid/MemoryTypeInformation.h
Add comments and DoxyGen format for these files.
[mirror_edk2.git] / MdeModulePkg / Include / Guid / MemoryTypeInformation.h
1 /** @file
2 GUID used for Memory Type Information entries in the HOB list.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. <BR>
5 All rights reserved. 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 __MEMORY_TYPE_INFORMATION_GUID_H__
16 #define __MEMORY_TYPE_INFORMATION_GUID_H__
17
18 #define EFI_MEMORY_TYPE_INFORMATION_GUID \
19 { 0x4c19049f,0x4137,0x4dd3, { 0x9c,0x10,0x8b,0x97,0xa8,0x3f,0xfd,0xfa } }
20
21 #define EFI_MEMORY_TYPE_INFORMATION_VARIABLE_NAME L"MemoryTypeInformation"
22
23 extern EFI_GUID gEfiMemoryTypeInformationGuid;
24
25 typedef struct {
26 UINT32 Type;
27 UINT32 NumberOfPages;
28 } EFI_MEMORY_TYPE_INFORMATION;
29
30 #endif