]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePeCoffExtraActionLibNull/PeCoffExtraActionLib.c
Clarify clipping behavior of PrintXY() and AsciiPrintXY().
[mirror_edk2.git] / MdePkg / Library / BasePeCoffExtraActionLibNull / PeCoffExtraActionLib.c
CommitLineData
27b2d249 1/** @file\r
2 Null PE/Coff Extra Action library instances with empty functions.\r
3\r
247d3676 4 Copyright (c) 2009, Intel Corporation<BR>\r
27b2d249 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**/\r
14\r
15#include <Base.h>\r
16#include <Library/PeCoffExtraActionLib.h>\r
48f3634e 17\r
27b2d249 18/**\r
19 Applies additional actions to relocate fixups to a PE/COFF image.\r
20\r
21 Generally this function is called after sucessfully Applying relocation fixups \r
22 to a PE/COFF image for some specicial purpose. \r
23 As a example, For NT32 emulator, the function should be implemented and called\r
24 to support source level debug. \r
25 \r
26 @param ImageContext Pointer to the image context structure that describes the PE/COFF\r
27 image that is being relocated.\r
28\r
29**/\r
30VOID\r
31EFIAPI\r
32PeCoffLoaderRelocateImageExtraAction (\r
33 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext\r
34 )\r
35{\r
36} \r
37\r
38/**\r
39 Unloads a loaded PE/COFF image from memory and releases its taken resource.\r
40 \r
41 Releases any environment specific resources that were allocated when the image \r
42 specified by ImageContext was loaded using PeCoffLoaderLoadImage(). \r
43 For NT32 emulator, the PE/COFF image loaded by system needs to release.\r
44 For real platform, the PE/COFF image loaded by Core doesn't needs to be unloaded, \r
45 \r
46 If ImageContext is NULL, then ASSERT().\r
47 \r
48 @param ImageContext Pointer to the image context structure that describes the PE/COFF\r
49 image to be unloaded.\r
50\r
51**/\r
52VOID\r
53EFIAPI\r
54PeCoffLoaderUnloadImageExtraAction (\r
55 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext\r
56 )\r
57{\r
fd444030 58}\r