]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdePkg/Include/Library/PeCoffGetEntryPointLib.h
Modified comment for gDs
[mirror_edk2.git] / MdePkg / Include / Library / PeCoffGetEntryPointLib.h
... / ...
CommitLineData
1/** @file\r
2 Memory Only PE COFF loader\r
3\r
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
9\r
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
12\r
13 Module Name: PeCoffGetEntryPointLib.h\r
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
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
23\r
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
29\r
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
35\r
36**/\r
37RETURN_STATUS\r
38EFIAPI\r
39PeCoffLoaderGetEntryPoint (\r
40 IN VOID *Pe32Data,\r
41 OUT VOID **EntryPoint\r
42 );\r
43\r
44#endif\r