]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Nt32Pkg/Include/Ppi/NtPeiLoadFile.h
Initialize the include folder for NT32Pkg
[mirror_edk2.git] / Nt32Pkg / Include / Ppi / NtPeiLoadFile.h
diff --git a/Nt32Pkg/Include/Ppi/NtPeiLoadFile.h b/Nt32Pkg/Include/Ppi/NtPeiLoadFile.h
new file mode 100644 (file)
index 0000000..622e01a
--- /dev/null
@@ -0,0 +1,65 @@
+/*++\r
+\r
+Copyright (c) 2006, 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
+Module Name:\r
+\r
+ NtPeiLoadFile.h\r
+\r
+Abstract:\r
+\r
+  WinNt Load File PPI.\r
+\r
+  When the PEI core is done it calls the DXE IPL via PPI\r
+\r
+--*/\r
+\r
+#ifndef __NT_PEI_LOAD_FILE_H__\r
+#define __NT_PEI_LOAD_FILE_H__\r
+\r
+#include <WinNtDxe.h>\r
+\r
+#define NT_PEI_LOAD_FILE_GUID \\r
+  { \\r
+    0xfd0c65eb, 0x405, 0x4cd2, {0x8a, 0xee, 0xf4, 0x0, 0xef, 0x13, 0xba, 0xc2 } \\r
+  }\r
+\r
+typedef\r
+EFI_STATUS\r
+(EFIAPI *NT_PEI_LOAD_FILE) (\r
+  VOID                  *Pe32Data,\r
+  EFI_PHYSICAL_ADDRESS  *ImageAddress,\r
+  UINT64                *ImageSize,\r
+  EFI_PHYSICAL_ADDRESS  *EntryPoint\r
+  );\r
+\r
+/*++\r
+\r
+Routine Description:\r
+  Loads and relocates a PE/COFF image into memory.\r
+\r
+Arguments:\r
+  Pe32Data         - The base address of the PE/COFF file that is to be loaded and relocated\r
+  ImageAddress     - The base address of the relocated PE/COFF image\r
+  ImageSize        - The size of the relocated PE/COFF image\r
+  EntryPoint       - The entry point of the relocated PE/COFF image\r
+\r
+Returns:\r
+  EFI_SUCCESS   - The file was loaded and relocated\r
+  EFI_OUT_OF_RESOURCES - There was not enough memory to load and relocate the PE/COFF file\r
+\r
+--*/\r
+typedef struct {\r
+  NT_PEI_LOAD_FILE  PeiLoadFileService;\r
+} NT_PEI_LOAD_FILE_PPI;\r
+\r
+extern EFI_GUID gNtPeiLoadFilePpiGuid;\r
+\r
+#endif\r