summaryrefslogtreecommitdiff
path: root/plugins/dex/format.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-05-04 17:56:33 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-05-04 17:57:10 (GMT)
commitb92a5e56de9198c08956ce486cd12712d7034731 (patch)
tree4ee902ed116b9988dfd284186c725f1bb1d20f22 /plugins/dex/format.h
parentc9f7b4491b368f886b0852ba166cef969fd6d20f (diff)
Created a GLib object for the Dex pool.
Diffstat (limited to 'plugins/dex/format.h')
-rw-r--r--plugins/dex/format.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/plugins/dex/format.h b/plugins/dex/format.h
index e0f1739..433ca26 100644
--- a/plugins/dex/format.h
+++ b/plugins/dex/format.h
@@ -65,14 +65,11 @@ GExeFormat *g_dex_format_new(GBinContent *);
/* Présente l'en-tête DEX du format chargé. */
const dex_header *g_dex_format_get_header(const GDexFormat *);
-/* Redéfinition : classe issue du code source (instance) */
-typedef struct _GDexClass GDexClass;
+/* Redéfinition : table des ressources pour format Dex (instance) */
+typedef struct _GDexPool GDexPool;
-/* Dénombre le nombre de classes trouvées. */
-size_t g_dex_format_count_classes(const GDexFormat *);
-
-/* Fournit une classe du format chargée en mémoire. */
-GDexClass *g_dex_format_get_class(const GDexFormat *, size_t);
+/* Fournit la table des ressources associée au format Dex. */
+GDexPool *g_dex_format_get_pool(const GDexFormat *);