summaryrefslogtreecommitdiff
path: root/src/format/dex/dex.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-10-01 15:55:39 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-10-01 15:55:39 (GMT)
commitd51fef170f00602744e55a8fdb21a3c7d196696a (patch)
tree5f51c1cdb09669da974c1b99d280a4e7078aab7f /src/format/dex/dex.h
parent9aa5b354e83825e2d9843aea742aa62221a2130b (diff)
Rewritten the whole support of DEX file format.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@581 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
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;