1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* Interface for libebl_x86_64 module.
Copyright (C) 2002 Red Hat, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifndef _LIBEBL_X86_64_H
#define _LIBEBL_X86_64_H 1
#include <libeblP.h>
/* Constructor. */
extern int x86_64_init (Elf *elf, GElf_Half machine, Ebl *eh, size_t ehlen);
/* Destructor. */
extern void x86_64_destr (Ebl *bh);
/* Function to get relocation type name. */
extern const char *x86_64_reloc_type_name (int type, char *buf, size_t len);
/* Check relocation type. */
extern bool x86_64_reloc_type_check (int type);
/* Code note handling. */
extern bool x86_64_core_note (const char *name, uint32_t type, uint32_t descsz,
const char *desc);
#endif /* libebl_x86_64.h */
|