]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/PeCoffGetEntryPointLib.h
f20562eef9deef430a4fe2b50dd441f7a57ed646
[mirror_edk2.git] / MdePkg / Include / Library / PeCoffGetEntryPointLib.h
1 /** @file
2 Memory Only PE COFF loader
3
4 Copyright (c) 2006, Intel Corporation
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 Module Name: PeCoffGetEntryPointLib.h
14
15 **/
16
17 #ifndef __PE_COFF_GET_ENTRY_POINT_LIB_H__
18 #define __PE_COFF_GET_ENTRY_POINT_LIB_H__
19
20 /**
21 Loads a PE/COFF image into memory
22
23 @param Pe32Data Pointer to a PE/COFF Image
24
25 @param EntryPoint Pointer to the entry point of the PE/COFF image
26
27 @retval EFI_SUCCESS if the EntryPoint was returned
28 @retval EFI_INVALID_PARAMETER if the EntryPoint could not be found from Pe32Data
29
30 **/
31 RETURN_STATUS
32 EFIAPI
33 PeCoffLoaderGetEntryPoint (
34 IN VOID *Pe32Data,
35 IN OUT VOID **EntryPoint
36 )
37 ;
38
39 #endif