summaryrefslogtreecommitdiff
path: root/src/format/pe/pe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/pe/pe.c')
-rw-r--r--src/format/pe/pe.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/format/pe/pe.c b/src/format/pe/pe.c
index 54defeb..2692560 100644
--- a/src/format/pe/pe.c
+++ b/src/format/pe/pe.c
@@ -42,9 +42,6 @@ static void g_pe_format_init(GPeFormat *);
/* Indique le type d'architecture visée par le format. */
static FormatTargetMachine g_pe_format_get_target_machine(const GPeFormat *);
-/* Fournit l'adresse mémoire du point d'entrée du programme. */
-static vmpa_t g_pe_format_get_entry_point(const GPeFormat *);
-
/* Fournit les références aux zones binaires à analyser. */
static GBinPart **g_pe_format_get_parts(const GPeFormat *, size_t *);
@@ -140,7 +137,6 @@ static void g_pe_format_init(GPeFormat *format)
exe_format = G_EXE_FORMAT(format);
exe_format->get_machine = (get_target_machine_fc)g_pe_format_get_target_machine;
- exe_format->get_entry_point = (get_entry_point_fc)g_pe_format_get_entry_point;
exe_format->get_parts = (get_parts_fc)g_pe_format_get_parts;
exe_format->translate_addr = (translate_addr_fc)g_pe_format_translate_address_into_offset;
@@ -258,25 +254,6 @@ static FormatTargetMachine g_pe_format_get_target_machine(const GPeFormat *forma
/******************************************************************************
* *
* Paramètres : format = informations chargées à consulter. *
-* *
-* Description : Fournit l'adresse mémoire du point d'entrée du programme. *
-* *
-* Retour : Adresse de mémoire. *
-* *
-* Remarques : - *
-* *
-******************************************************************************/
-
-static vmpa_t g_pe_format_get_entry_point(const GPeFormat *format)
-{
- return 0;//(format->is_32b ? format->header.e_entry.addr32 : format->header.e_entry.addr64);
-
-}
-
-
-/******************************************************************************
-* *
-* Paramètres : format = informations chargées à consulter. *
* count = quantité de zones listées. [OUT] *
* *
* Description : Fournit les références aux zones binaires à analyser. *