]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Library/DefaultExceptionHandlerLib/DefaultExceptionHandlerBase.c
IntelFrameworkModulePkg FwVolDxe: Get FV auth status propagated from PEI
[mirror_edk2.git] / ArmPkg / Library / DefaultExceptionHandlerLib / DefaultExceptionHandlerBase.c
CommitLineData
619b3998 1/** @file\r
2\r
3 Copyright (c) 2012, ARM Ltd. All rights reserved.<BR>\r
4\r
5 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\r
17/**\r
18\r
19 @param FaultAddress Address to find PE/COFF image for.\r
20 @param ImageBase Return load address of found image\r
21 @param PeCoffSizeOfHeaders Return the size of the PE/COFF header for the image that was found\r
22\r
23 @retval NULL FaultAddress not in a loaded PE/COFF image.\r
24 @retval Path and file name of PE/COFF image.\r
25\r
26**/\r
27CHAR8 *\r
28GetImageName (\r
c63626b7 29 IN UINTN FaultAddress,\r
30 OUT UINTN *ImageBase,\r
31 OUT UINTN *PeCoffSizeOfHeaders\r
619b3998 32 )\r
33{\r
34 return NULL;\r
35}\r