]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Remove the BugBug in package header file for DXE_CORE and DXE_DRIVER which force...
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 14 Mar 2007 02:12:16 +0000 (02:12 +0000)
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 14 Mar 2007 02:12:16 +0000 (02:12 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2457 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Common/PeCoffLoaderImageContext.h [new file with mode: 0644]
MdePkg/Include/Library/PeCoffLib.h

diff --git a/MdePkg/Include/Common/PeCoffLoaderImageContext.h b/MdePkg/Include/Common/PeCoffLoaderImageContext.h
new file mode 100644 (file)
index 0000000..b2519ea
--- /dev/null
@@ -0,0 +1,57 @@
+/** @file\r
+  Important data type defined used for Memory Only PE COFF loader. \r
+\r
+  Copyright (c) 2007, Intel Corporation                                                         \r
+  All rights reserved. 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
+**/\r
+\r
+#ifndef __PECOFFLOADER_IMAGE_CONTEXT_H\r
+#define __PECOFFLOADER_IMAGE_CONTEXT_H\r
+\r
+//\r
+// PE/COFF Loader Read Function passed in by caller\r
+//\r
+typedef\r
+RETURN_STATUS\r
+(EFIAPI *PE_COFF_LOADER_READ_FILE) (\r
+  IN     VOID   *FileHandle,\r
+  IN     UINTN  FileOffset,\r
+  IN OUT UINTN  *ReadSize,\r
+  OUT    VOID   *Buffer\r
+  );\r
+\r
+//\r
+// Context structure used while PE/COFF image is being loaded and relocated\r
+//\r
+typedef struct {\r
+  PHYSICAL_ADDRESS                  ImageAddress;\r
+  UINT64                            ImageSize;\r
+  PHYSICAL_ADDRESS                  DestinationAddress;\r
+  PHYSICAL_ADDRESS                  EntryPoint;\r
+  PE_COFF_LOADER_READ_FILE          ImageRead;\r
+  VOID                              *Handle;\r
+  VOID                              *FixupData;\r
+  UINT32                            SectionAlignment;\r
+  UINT32                            PeCoffHeaderOffset;\r
+  UINT32                            DebugDirectoryEntryRva;\r
+  VOID                              *CodeView;\r
+  CHAR8                             *PdbPointer;\r
+  UINTN                             SizeOfHeaders;\r
+  UINT32                            ImageCodeMemoryType;\r
+  UINT32                            ImageDataMemoryType;\r
+  UINT32                            ImageError;\r
+  UINTN                             FixupDataSize;\r
+  UINT16                            Machine;\r
+  UINT16                            ImageType;\r
+  BOOLEAN                           RelocationsStripped;\r
+  BOOLEAN                           IsTeImage;\r
+} PE_COFF_LOADER_IMAGE_CONTEXT;\r
+\r
+#endif\r
index 920004aebcdf7ee131b11775d0f233068a942902..2bb9db58cf65825e8fe7264bfd1a035b9f142523 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Memory Only PE COFF loader. \r
 \r
 /** @file\r
   Memory Only PE COFF loader. \r
 \r
-  Copyright (c) 2006, Intel Corporation                                                         \r
+  Copyright (c) 2006 - 2007, Intel Corporation                                                         \r
   All rights reserved. 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
   All rights reserved. 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
@@ -17,6 +17,8 @@
 #ifndef __BASE_PE_COFF_LIB_H__\r
 #define __BASE_PE_COFF_LIB_H__\r
 \r
 #ifndef __BASE_PE_COFF_LIB_H__\r
 #define __BASE_PE_COFF_LIB_H__\r
 \r
+#include <Common/PeCoffLoaderImageContext.h>\r
+\r
 //\r
 // Return status codes from the PE/COFF Loader services\r
 // BUGBUG: Find where used and see if can be replaced by RETURN_STATUS codes\r
 //\r
 // Return status codes from the PE/COFF Loader services\r
 // BUGBUG: Find where used and see if can be replaced by RETURN_STATUS codes\r
 #define IMAGE_ERROR_FAILED_ICACHE_FLUSH          10\r
 \r
 \r
 #define IMAGE_ERROR_FAILED_ICACHE_FLUSH          10\r
 \r
 \r
-//\r
-// PE/COFF Loader Read Function passed in by caller\r
-//\r
-typedef\r
-RETURN_STATUS\r
-(EFIAPI *PE_COFF_LOADER_READ_FILE) (\r
-  IN     VOID   *FileHandle,\r
-  IN     UINTN  FileOffset,\r
-  IN OUT UINTN  *ReadSize,\r
-  OUT    VOID   *Buffer\r
-  );\r
-\r
-//\r
-// Context structure used while PE/COFF image is being loaded and relocated\r
-//\r
-typedef struct {\r
-  PHYSICAL_ADDRESS                  ImageAddress;\r
-  UINT64                            ImageSize;\r
-  PHYSICAL_ADDRESS                  DestinationAddress;\r
-  PHYSICAL_ADDRESS                  EntryPoint;\r
-  PE_COFF_LOADER_READ_FILE          ImageRead;\r
-  VOID                              *Handle;\r
-  VOID                              *FixupData;\r
-  UINT32                            SectionAlignment;\r
-  UINT32                            PeCoffHeaderOffset;\r
-  UINT32                            DebugDirectoryEntryRva;\r
-  VOID                              *CodeView;\r
-  CHAR8                             *PdbPointer;\r
-  UINTN                             SizeOfHeaders;\r
-  UINT32                            ImageCodeMemoryType;\r
-  UINT32                            ImageDataMemoryType;\r
-  UINT32                            ImageError;\r
-  UINTN                             FixupDataSize;\r
-  UINT16                            Machine;\r
-  UINT16                            ImageType;\r
-  BOOLEAN                           RelocationsStripped;\r
-  BOOLEAN                           IsTeImage;\r
-} PE_COFF_LOADER_IMAGE_CONTEXT;\r
-\r
-\r
 /**\r
   Retrieves information about a PE/COFF image.\r
 \r
 /**\r
   Retrieves information about a PE/COFF image.\r
 \r