summaryrefslogtreecommitdiff
path: root/src/format/elf/elf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/elf/elf.h')
-rw-r--r--src/format/elf/elf.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/format/elf/elf.h b/src/format/elf/elf.h
index f18670c..484cda8 100644
--- a/src/format/elf/elf.h
+++ b/src/format/elf/elf.h
@@ -30,6 +30,7 @@
#include <sys/types.h>
+#include "elf_def.h"
#include "../format.h"
@@ -57,6 +58,12 @@ GType g_elf_format_get_type(void);
/* Prend en charge un nouveau format ELF. */
GBinFormat *g_elf_format_new(GBinContent *);
+/* Présente l'en-tête ELF du format chargé. */
+const elf_header *g_elf_format_get_header(const GElfFormat *);
+
+/* Informe quant au boutisme utilisé. */
+SourceEndian g_elf_format_get_endianness(const GElfFormat *);
+
#endif /* _FORMAT_ELF_ELF_H */