summaryrefslogtreecommitdiff
path: root/src/format/dex/method.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-04-23 20:23:33 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-04-23 20:23:33 (GMT)
commit3284ce333cc4b09d9150b59c60005af8e4ddc417 (patch)
treeff9c6a51e20f3a15654005f1c9e2ee22d91e7b6c /src/format/dex/method.h
parentdf4bc1a413561f9de095e1c30c678bd7272c3478 (diff)
Loaded all Dex methods in a proper way.
Diffstat (limited to 'src/format/dex/method.h')
-rw-r--r--src/format/dex/method.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/dex/method.h b/src/format/dex/method.h
index cb85bc6..c7e945d 100644
--- a/src/format/dex/method.h
+++ b/src/format/dex/method.h
@@ -67,10 +67,10 @@ typedef enum _DexVariableIndex
GType g_dex_method_get_type(void);
/* Crée une nouvelle représentation de methode issue de code. */
-GDexMethod *g_dex_method_new(GDexFormat *, const encoded_method *, uleb128_t *);
+GDexMethod *g_dex_method_new_defined(GDexFormat *, const encoded_method *, uleb128_t *);
/* Crée une nouvelle représentation de methode vide. */
-GDexMethod *g_dex_method_new_empty(GDexFormat *, const method_id_item *);
+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 *);