diff options
Diffstat (limited to 'src/format/dwarf/v4')
-rw-r--r-- | src/format/dwarf/v4/dwarf.c | 3 | ||||
-rw-r--r-- | src/format/dwarf/v4/dwarf.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/format/dwarf/v4/dwarf.c b/src/format/dwarf/v4/dwarf.c index 52345e8..995d4f7 100644 --- a/src/format/dwarf/v4/dwarf.c +++ b/src/format/dwarf/v4/dwarf.c @@ -153,6 +153,7 @@ static void g_dwarfv4_format_finalize(GDwarfV4Format *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 DWARF (v4). * * * @@ -162,7 +163,7 @@ static void g_dwarfv4_format_finalize(GDwarfV4Format *format) * * ******************************************************************************/ -GBinFormat *g_dwarfv4_format_new(GBinContent *content, GExeFormat *parent) +GBinFormat *g_dwarfv4_format_new(GBinContent *content, GExeFormat *parent, GtkStatusStack *status) { GDwarfV4Format *result; /* Structure à retourner */ diff --git a/src/format/dwarf/v4/dwarf.h b/src/format/dwarf/v4/dwarf.h index af3c2c4..d0f5b7a 100644 --- a/src/format/dwarf/v4/dwarf.h +++ b/src/format/dwarf/v4/dwarf.h @@ -52,7 +52,7 @@ typedef struct _GDwarfV4FormatClass GDwarfV4FormatClass; GType g_dwarfv4_format_get_type(void); /* Prend en charge un nouveau format DWARF (v4). */ -GBinFormat *g_dwarfv4_format_new(GBinContent *, GExeFormat *); +GBinFormat *g_dwarfv4_format_new(GBinContent *, GExeFormat *, GtkStatusStack *); |