]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BasePeCoffLib/Ia32/PeCoffLoaderEx.c
9a2b2a04dd9067c67841ab811f6441ddf9fbb9d7
[mirror_edk2.git] / MdePkg / Library / BasePeCoffLib / Ia32 / PeCoffLoaderEx.c
1 /** @file
2 IA-32 Specific relocation fixups.
3
4 Copyright (c) 2006, Intel Corporation<BR>
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: PeCoffLoaderEx.c
14
15 **/
16
17
18
19
20
21 /**
22 Performs an IA-32 specific relocation fixup.
23
24 @param Reloc Pointer to the relocation record.
25 @param Fixup Pointer to the address to fix up.
26 @param FixupData Pointer to a buffer to log the fixups.
27 @param Adjust The offset to adjust the fixup.
28
29 @retval EFI_UNSUPPORTED Unsupported now.
30
31 **/
32 RETURN_STATUS
33 PeCoffLoaderRelocateImageEx (
34 IN UINT16 *Reloc,
35 IN OUT CHAR8 *Fixup,
36 IN OUT CHAR8 **FixupData,
37 IN UINT64 Adjust
38 )
39 {
40 return RETURN_UNSUPPORTED;
41 }