VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePeCoffExtraActionLibNull/PeCoffExtraActionLib.c@ 48674

最後變更 在這個檔案從48674是 48674,由 vboxsync 提交於 11 年 前

EFI: Export newly imported tinaocore UEFI sources to OSE.

  • 屬性 svn:eol-style 設為 native
檔案大小: 1.6 KB
 
1/** @file
2 Null PE/Coff Extra Action library instances with empty functions.
3
4 Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
5 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**/
14
15#include <Base.h>
16#include <Library/PeCoffExtraActionLib.h>
17#include <Library/DebugLib.h>
18
19/**
20 Performs additional actions after a PE/COFF image has been loaded and relocated.
21
22 If ImageContext is NULL, then ASSERT().
23
24 @param ImageContext The pointer to the image context structure that describes the
25 PE/COFF image that has already been loaded and relocated.
26
27**/
28VOID
29EFIAPI
30PeCoffLoaderRelocateImageExtraAction (
31 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
32 )
33{
34 ASSERT (ImageContext != NULL);
35}
36
37/**
38 Performs additional actions just before a PE/COFF image is unloaded. Any resources
39 that were allocated by PeCoffLoaderRelocateImageExtraAction() must be freed.
40
41 If ImageContext is NULL, then ASSERT().
42
43 @param ImageContext The pointer to the image context structure that describes the
44 PE/COFF image that is being unloaded.
45
46**/
47VOID
48EFIAPI
49PeCoffLoaderUnloadImageExtraAction (
50 IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
51 )
52{
53 ASSERT (ImageContext != NULL);
54}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette