summaryrefslogtreecommitdiff
path: root/src/core/formats.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-10-18 20:50:10 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-10-18 20:50:10 (GMT)
commitdce9d9cdfef1d37ef11a987a21f36e83b6b1944f (patch)
tree830623ade20e892954fcbddd3b7b05d09aac1dd7 /src/core/formats.c
parent1e7c7de85438749d3faf7b76984b86a9c088fbc1 (diff)
Created plugins for the Dex and Dalvik support.
Diffstat (limited to 'src/core/formats.c')
-rw-r--r--src/core/formats.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/formats.c b/src/core/formats.c
index 0e1e8e7..35d8a46 100644
--- a/src/core/formats.c
+++ b/src/core/formats.c
@@ -29,7 +29,6 @@
#include <string.h>
-#include "../format/dex/dex.h"
#include "../format/dwarf/dwarf.h"
#include "../format/dwarf/v2/dwarf.h"
#include "../format/dwarf/v3/dwarf.h"
@@ -195,14 +194,10 @@ bool load_hard_coded_formats_definitions(void)
/* Détections */
- result &= register_format_matcher(dex_is_matching, NULL);
-
result &= register_format_matcher(dwarf_is_matching, NULL);
/* Chargements */
- result &= register_format_loader("dex", "Dalvik Executable format", g_dex_format_new);
-
result &= register_format_loader("dwarf_v2", "Debugging With Arbitrary Record Formats (v2)",
g_dwarfv2_format_new);