]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Ppi/LoadImage.h
Update MdePkg/Include/Ppi according to code review comments.
[mirror_edk2.git] / MdePkg / Include / Ppi / LoadImage.h
CommitLineData
c311f86b 1/** @file\r
dafa11b1 2 The file describes the PPI which notifies other drivers \r
00edb218 3 of the PEIM being initialized by the PEI Dispatcher.\r
5879b875 4\r
4ca9b6c4 5 Copyright (c) 2006 - 2008, Intel Corporation \r
5879b875 6 All rights reserved. This program and the accompanying materials \r
7 are licensed and made available under the terms and conditions of the BSD License \r
8 which accompanies this distribution. The full text of the license may be found at \r
9 http://opensource.org/licenses/bsd-license.php \r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
13\r
5879b875 14 @par Revision Reference:\r
15 This PPI is defined in PI.\r
16 Version 1.00.\r
17\r
18**/\r
19\r
20#ifndef __LOADED_IMAGE_PPI_H__\r
21#define __LOADED_IMAGE_PPI_H__\r
22\r
23#define EFI_PEI_LOADED_IMAGE_PPI_GUID \\r
00edb218 24 { 0xc1fcd448, 0x6300, 0x4458, { 0xb8, 0x64, 0x28, 0xdf, 0x1, 0x53, 0x64, 0xbc } }\r
5879b875 25\r
26\r
00edb218 27typedef struct _EFI_PEI_LOADED_IMAGE_PPI EFI_PEI_LOADED_IMAGE_PPI;\r
5879b875 28\r
dafa11b1 29///\r
30/// This interface is installed by the PEI Dispatcher after the image has been\r
31/// loaded and after all security checks have been performed, \r
32/// to notify other PEIMs of the files which are being loaded.\r
33///\r
5879b875 34struct _EFI_PEI_LOADED_IMAGE_PPI {\r
dafa11b1 35 ///\r
36 /// Address of the image at the address where it will be executed.\r
37 ///\r
00edb218 38 EFI_PHYSICAL_ADDRESS ImageAddress;\r
dafa11b1 39 ///\r
40 /// Size of the image as it will be executed.\r
41 ///\r
00edb218 42 UINT64 ImageSize;\r
dafa11b1 43 ///\r
44 /// File handle from which the image was loaded.\r
45 /// Can be NULL, indicating the image was not loaded from a handle.\r
46 ///\r
00edb218 47 EFI_PEI_FILE_HANDLE FileHandle;\r
5879b875 48};\r
49\r
50\r
51extern EFI_GUID gEfiPeiLoadedImagePpiGuid;\r
52\r
53#endif\r