2009-03-05 10:18:28 +01:00
|
|
|
/** @file
|
|
|
|
Null PE/Coff Extra Action library instances with empty functions.
|
|
|
|
|
2018-06-27 15:11:33 +02:00
|
|
|
Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2009-03-05 10:18:28 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Base.h>
|
|
|
|
#include <Library/PeCoffExtraActionLib.h>
|
2009-05-09 02:45:25 +02:00
|
|
|
#include <Library/DebugLib.h>
|
2009-03-05 16:29:02 +01:00
|
|
|
|
2009-03-05 10:18:28 +01:00
|
|
|
/**
|
2009-05-09 02:45:25 +02:00
|
|
|
Performs additional actions after a PE/COFF image has been loaded and relocated.
|
2009-03-05 10:18:28 +01:00
|
|
|
|
2009-05-09 02:45:25 +02:00
|
|
|
If ImageContext is NULL, then ASSERT().
|
|
|
|
|
2010-06-25 23:56:02 +02:00
|
|
|
@param ImageContext The pointer to the image context structure that describes the
|
2009-05-09 02:45:25 +02:00
|
|
|
PE/COFF image that has already been loaded and relocated.
|
2009-03-05 10:18:28 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeCoffLoaderRelocateImageExtraAction (
|
|
|
|
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
|
|
|
)
|
|
|
|
{
|
2009-05-09 02:45:25 +02:00
|
|
|
ASSERT (ImageContext != NULL);
|
2018-06-27 15:11:33 +02:00
|
|
|
}
|
2009-03-05 10:18:28 +01:00
|
|
|
|
|
|
|
/**
|
2009-05-09 02:45:25 +02:00
|
|
|
Performs additional actions just before a PE/COFF image is unloaded. Any resources
|
|
|
|
that were allocated by PeCoffLoaderRelocateImageExtraAction() must be freed.
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2009-03-05 10:18:28 +01:00
|
|
|
If ImageContext is NULL, then ASSERT().
|
2018-06-27 15:11:33 +02:00
|
|
|
|
2010-06-25 23:56:02 +02:00
|
|
|
@param ImageContext The pointer to the image context structure that describes the
|
2009-05-09 02:45:25 +02:00
|
|
|
PE/COFF image that is being unloaded.
|
2009-03-05 10:18:28 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
PeCoffLoaderUnloadImageExtraAction (
|
|
|
|
IN OUT PE_COFF_LOADER_IMAGE_CONTEXT *ImageContext
|
|
|
|
)
|
|
|
|
{
|
2009-05-09 02:45:25 +02:00
|
|
|
ASSERT (ImageContext != NULL);
|
2009-03-05 14:56:10 +01:00
|
|
|
}
|