diff options
Diffstat (limited to 'src/format/dex')
-rwxr-xr-x | src/format/dex/dex.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/format/dex/dex.c b/src/format/dex/dex.c index 579abde..94ec34a 100755 --- a/src/format/dex/dex.c +++ b/src/format/dex/dex.c @@ -54,9 +54,6 @@ static void g_dex_format_decompile(const GDexFormat *, GCodeBuffer *, const char /* Indique le type d'architecture visée par le format. */ static FormatTargetMachine g_dex_format_get_target_machine(const GDexFormat *); -/* Fournit l'adresse mémoire du point d'entrée du programme. */ -static vmpa_t g_dex_format_get_entry_point(const GDexFormat *); - /* Fournit les références aux zones binaires à analyser. */ static GBinPart **g_dex_format_get_parts(const GDexFormat *, size_t *); @@ -142,7 +139,6 @@ static void g_dex_format_init(GDexFormat *format) exe_format = G_EXE_FORMAT(format); exe_format->get_machine = (get_target_machine_fc)g_dex_format_get_target_machine; - exe_format->get_entry_point = (get_entry_point_fc)g_dex_format_get_entry_point; exe_format->get_parts = (get_parts_fc)g_dex_format_get_parts; exe_format->translate_addr = (translate_addr_fc)g_dex_format_translate_address_into_offset; @@ -357,25 +353,6 @@ static FormatTargetMachine g_dex_format_get_target_machine(const GDexFormat *for /****************************************************************************** * * * 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_dex_format_get_entry_point(const GDexFormat *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. * |