summaryrefslogtreecommitdiff
path: root/src/format/dex/method.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-05-08 08:01:03 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-05-08 08:01:03 (GMT)
commit9a548294c18ae04ef00ee0227ada8eb8b050b5fa (patch)
treec8651fc1fb70579a5bd3f3a61ba04f13ae58efb5 /src/format/dex/method.h
parent13be5aa2ac44f7bfc70ee25e7ba20ae2adf58ad5 (diff)
Ensured a Dex routine is not abstract nor native before adding a symbol into the disassembled code.
Diffstat (limited to 'src/format/dex/method.h')
-rw-r--r--src/format/dex/method.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/format/dex/method.h b/src/format/dex/method.h
index cb1f6e2..e5b8634 100644
--- a/src/format/dex/method.h
+++ b/src/format/dex/method.h
@@ -75,6 +75,9 @@ GDexMethod *g_dex_method_new_callable(GDexFormat *, const method_id_item *);
/* Fournit les indications Dex concernant la méthode. */
const encoded_method *g_dex_method_get_dex_info(const GDexMethod *);
+/* Indique si du code est rattaché à une méthode Dex. */
+bool g_dex_method_has_dex_body(const GDexMethod *);
+
/* Fournit les indications Dex relatives au corps de la méthode. */
const code_item *g_dex_method_get_dex_body(const GDexMethod *);