]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/PeCoffGetEntryPointLib.h
• BaseMemoryLib:
[mirror_edk2.git] / MdePkg / Include / Library / PeCoffGetEntryPointLib.h
CommitLineData
878ddf1f 1/** @file\r
24e25d11 2 Memory Only PE COFF loader\r
878ddf1f 3\r
24e25d11 4 Copyright (c) 2006, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
878ddf1f 9\r
24e25d11 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
878ddf1f 12\r
24e25d11 13 Module Name: PeCoffGetEntryPointLib.h\r
878ddf1f 14\r
15**/\r
16\r
17#ifndef __PE_COFF_GET_ENTRY_POINT_LIB_H__\r
18#define __PE_COFF_GET_ENTRY_POINT_LIB_H__\r
19\r
20/**\r
24e25d11 21 Retrieves and returns a pointer to the entry point to a PE/COFF image that has been loaded\r
22 into system memory with the PE/COFF Loader Library functions.\r
878ddf1f 23\r
24e25d11 24 Retrieves the entry point to the PE/COFF image specified by Pe32Data and returns this entry\r
25 point in EntryPoint. If the entry point could not be retrieved from the PE/COFF image, then\r
26 return RETURN_INVALID_PARAMETER. Otherwise return RETURN_SUCCESS.\r
27 If Pe32Data is NULL, then ASSERT().\r
28 If EntryPoint is NULL, then ASSERT().\r
878ddf1f 29\r
24e25d11 30 @param Pe32Data Pointer to the PE/COFF image that is loaded in system memory.\r
31 @param EntryPoint Pointer to entry point to the PE/COFF image to return.\r
32\r
33 @retval RETURN_SUCCESS EntryPoint was returned.\r
34 @retval RETURN_INVALID_PARAMETER The entry point could not be found in the PE/COFF image.\r
878ddf1f 35\r
36**/\r
37RETURN_STATUS\r
38EFIAPI\r
39PeCoffLoaderGetEntryPoint (\r
24e25d11 40 IN VOID *Pe32Data,\r
41 OUT VOID **EntryPoint\r
42 );\r
878ddf1f 43\r
44#endif\r