]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BasePeCoffLib/Ia32/PeCoffLoaderEx.c
Initial import.
[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
26 @param Fixup Pointer to the address to fix up.
27
28 @param FixupData Pointer to a buffer to log the fixups.
29
30 @param Adjust The offset to adjust the fixup.
31
32 @retval EFI_UNSUPPORTED Unsupported now.
33
34 **/
35 RETURN_STATUS
36 PeCoffLoaderRelocateImageEx (
37 IN UINT16 *Reloc,
38 IN OUT CHAR8 *Fixup,
39 IN OUT CHAR8 **FixupData,
40 IN UINT64 Adjust
41 )
42 {
43 return RETURN_UNSUPPORTED;
44 }