diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-05-19 21:21:30 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-05-19 21:21:30 (GMT) |
commit | f828d126a74facac145531822c6ea9c8259b50e0 (patch) | |
tree | 521bfa44de551f30934ee321339a7a87d12a3243 /src/format/dex | |
parent | e92c777c91612c8508d263645480c6c3889b679d (diff) |
Loaded the ELF internal symbols using all the available CPUs.
Diffstat (limited to 'src/format/dex')
-rwxr-xr-x | src/format/dex/dex.c | 3 | ||||
-rwxr-xr-x | src/format/dex/dex.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/format/dex/dex.c b/src/format/dex/dex.c index 2897ee3..3388861 100755 --- a/src/format/dex/dex.c +++ b/src/format/dex/dex.c @@ -233,6 +233,7 @@ static void g_dex_format_finalize(GDexFormat *format) * * * Paramètres : content = contenu binaire à parcourir. * * parent = éventuel format exécutable déjà chargé. * + status = barre de statut à tenir informée. * * * * Description : Prend en charge un nouveau format Dex. * * * @@ -242,7 +243,7 @@ static void g_dex_format_finalize(GDexFormat *format) * * ******************************************************************************/ -GBinFormat *g_dex_format_new(GBinContent *content, GExeFormat *parent) +GBinFormat *g_dex_format_new(GBinContent *content, GExeFormat *parent, GtkStatusStack *status) { GDexFormat *result; /* Structure à retourner */ GBinFormat *base; /* Version basique du format */ diff --git a/src/format/dex/dex.h b/src/format/dex/dex.h index 28d2a49..0283a0c 100755 --- a/src/format/dex/dex.h +++ b/src/format/dex/dex.h @@ -56,7 +56,7 @@ FormatMatchStatus dex_is_matching(GBinContent *, GExeFormat *, void *, char **); GType g_dex_format_get_type(void); /* Prend en charge un nouveau format DEX. */ -GBinFormat *g_dex_format_new(GBinContent *, GExeFormat *); +GBinFormat *g_dex_format_new(GBinContent *, GExeFormat *, GtkStatusStack *); /* Présente l'en-tête DEX du format chargé. */ const dex_header *g_dex_format_get_header(const GDexFormat *); |