]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EdkCompatibilityPkg/Foundation/Framework/Ppi/LoadedImage/LoadedImage.h
EdkCompatibilityPkg: Remove EdkCompatibilityPkg
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Ppi / LoadedImage / LoadedImage.h
diff --git a/EdkCompatibilityPkg/Foundation/Framework/Ppi/LoadedImage/LoadedImage.h b/EdkCompatibilityPkg/Foundation/Framework/Ppi/LoadedImage/LoadedImage.h
deleted file mode 100644 (file)
index 909b109..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-/*++\r
-\r
-Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>\r
-This program and the accompanying materials                          \r
-are licensed and made available under the terms and conditions of the BSD License         \r
-which accompanies this distribution.  The full text of the license may be found at        \r
-http://opensource.org/licenses/bsd-license.php                                            \r
-                                                                                          \r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
-\r
-Module Name:\r
-\r
- LoadedImage.h\r
-\r
-Abstract:\r
-\r
-  The file describes the PPI which notifies other drivers \r
-  of the PEIM being initialized by the PEI Dispatcher.\r
-\r
---*/\r
-\r
-#ifndef __LOADED_IMAGE_PPI_H__\r
-#define __LOADED_IMAGE_PPI_H__\r
-\r
-#include "Tiano.h"\r
-\r
-#define EFI_PEI_LOADED_IMAGE_PPI_GUID \\r
-  { 0xc1fcd448, 0x6300, 0x4458, {0xb8, 0x64, 0x28, 0xdf, 0x01, 0x53, 0x64, 0xbc} }\r
-  \r
-typedef struct _EFI_PEI_LOADED_IMAGE_PPI  EFI_PEI_LOADED_IMAGE_PPI;\r
-\r
-///\r
-/// This interface is installed by the PEI Dispatcher after the image has been\r
-/// loaded and after all security checks have been performed, \r
-/// to notify other PEIMs of the files which are being loaded.\r
-///\r
-struct _EFI_PEI_LOADED_IMAGE_PPI {\r
-  ///\r
-  /// Address of the image at the address where it will be executed.\r
-  ///\r
-  EFI_PHYSICAL_ADDRESS  ImageAddress;\r
-  ///\r
-  /// Size of the image as it will be executed.\r
-  ///\r
-  UINT64                ImageSize;\r
-  ///\r
-  /// File handle from which the image was loaded.\r
-  /// Can be NULL, indicating the image was not loaded from a handle.\r
-  ///\r
-  EFI_PEI_FILE_HANDLE   FileHandle;\r
-};\r
-\r
-extern EFI_GUID gEfiPeiLoadedImagePpiGuid;\r
-\r
-#endif \r