summaryrefslogtreecommitdiff
path: root/src/format/dex/dex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/dex/dex.h')
-rwxr-xr-xsrc/format/dex/dex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format/dex/dex.h b/src/format/dex/dex.h
index 7f427a3..1ff3809 100755
--- a/src/format/dex/dex.h
+++ b/src/format/dex/dex.h
@@ -30,7 +30,7 @@
#include <sys/types.h>
-#include "../format.h"
+#include "../../core/formats.h"
@@ -49,13 +49,13 @@ typedef struct _GDexFormatClass GDexFormatClass;
/* Indique si le format peut être pris en charge ici. */
-bool dex_is_matching(GBinContent *);
+FormatMatchStatus dex_is_matching(GBinContent *, GExeFormat *, void *, char **);
/* Indique le type défini pour un format d'exécutable DEX. */
GType g_dex_format_get_type(void);
/* Prend en charge un nouveau format DEX. */
-GBinFormat *g_dex_format_new(const bin_t *, off_t);
+GBinFormat *g_dex_format_new(GBinContent *, GExeFormat *);
/* Redéfinition : classe issue du code source (instance) */
typedef struct _GDexClass GDexClass;