Home | History | Annotate | Download | only in DefaultExceptionHandlerLib
      1 /** @file
      2 
      3   Copyright (c) 2012, ARM Ltd. All rights reserved.<BR>
      4 
      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 
     17 /**
     18 
     19   @param  FaultAddress         Address to find PE/COFF image for.
     20   @param  ImageBase            Return load address of found image
     21   @param  PeCoffSizeOfHeaders  Return the size of the PE/COFF header for the image that was found
     22 
     23   @retval NULL                 FaultAddress not in a loaded PE/COFF image.
     24   @retval                      Path and file name of PE/COFF image.
     25 
     26 **/
     27 CHAR8 *
     28 GetImageName (
     29   IN  UINTN  FaultAddress,
     30   OUT UINTN  *ImageBase,
     31   OUT UINTN  *PeCoffSizeOfHeaders
     32   )
     33 {
     34   return NULL;
     35 }
     36