1/** @file
2Header file for Elf32 Convert solution
3
4Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
5
6This program and the accompanying materials are licensed and made available
7under the terms and conditions of the BSD License which accompanies this
8distribution.  The full text of the license may be found at
9http://opensource.org/licenses/bsd-license.php
10
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14**/
15
16#ifndef _ELF_32_CONVERT_
17#define _ELF_32_CONVERT_
18
19BOOLEAN
20InitializeElf32 (
21  UINT8               *FileBuffer,
22  ELF_FUNCTION_TABLE  *ElfFunctions
23  );
24
25#endif
26