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