]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/CodeTools/Source/GenFvImage/Ebc/PeCoffLoaderEx.c
More renames for Tool Packages
[mirror_edk2.git] / Tools / CodeTools / Source / GenFvImage / Ebc / PeCoffLoaderEx.c
CommitLineData
878ddf1f 1/*++\r
2\r
3Copyright (c) 2004, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 PeCoffLoaderEx.c\r
15\r
16Abstract:\r
17\r
18 EBC Specific relocation fixups\r
19\r
20Revision History\r
21\r
22--*/\r
23\r
24\r
25\r
26\r
27RETURN_STATUS\r
28PeCoffLoaderRelocateImageEx (\r
29 IN UINT16 *Reloc,\r
30 IN OUT CHAR8 *Fixup,\r
31 IN OUT CHAR8 **FixupData,\r
32 IN UINT64 Adjust\r
33 )\r
34/*++\r
35\r
36Routine Description:\r
37\r
38 Performs an IA-32 specific relocation fixup\r
39\r
40Arguments:\r
41\r
42 Reloc - Pointer to the relocation record\r
43\r
44 Fixup - Pointer to the address to fix up\r
45\r
46 FixupData - Pointer to a buffer to log the fixups\r
47\r
48 Adjust - The offset to adjust the fixup\r
49\r
50Returns:\r
51\r
52 EFI_UNSUPPORTED - Unsupported now\r
53\r
54--*/\r
55{\r
56 return RETURN_UNSUPPORTED;\r
57}\r