summaryrefslogtreecommitdiff
path: root/plugins/dex
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-02-03 10:47:44 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-02-03 10:47:44 (GMT)
commit097e2f0265ea9cacdfbc7ab1ac7f1b64054b570f (patch)
treef837a5e7a5a9690e64e6cf572274144d742aa32f /plugins/dex
parent113f37b954e395beb2a335e5e364746c70af625d (diff)
Typos.
Diffstat (limited to 'plugins/dex')
-rw-r--r--plugins/dex/format.c3
-rw-r--r--plugins/dex/loading.h13
2 files changed, 8 insertions, 8 deletions
diff --git a/plugins/dex/format.c b/plugins/dex/format.c
index 5ae0ec8..44e8ba3 100644
--- a/plugins/dex/format.c
+++ b/plugins/dex/format.c
@@ -96,7 +96,7 @@ static bool g_dex_format_get_section_range_by_name(const GDexFormat *, const cha
* *
* Description : Valide un contenu comme étant un format Dex. *
* *
-* Retour : - *
+* Retour : true si le format attendu a bien été reconnu, false sinon. *
* *
* Remarques : - *
* *
@@ -456,6 +456,7 @@ static const char *g_dex_format_get_target_machine(const GDexFormat *format)
}
+
/******************************************************************************
* *
* Paramètres : format = informations chargées à consulter. *
diff --git a/plugins/dex/loading.h b/plugins/dex/loading.h
index 16d1369..fe5ce1f 100644
--- a/plugins/dex/loading.h
+++ b/plugins/dex/loading.h
@@ -32,12 +32,12 @@
-#define G_TYPE_DEX_LOADING g_dex_loading_get_type()
-#define G_DEX_LOADING(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_dex_loading_get_type(), GDexLoading))
-#define G_IS_DEX_LOADING(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_dex_loading_get_type()))
-#define G_DEX_LOADING_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_DEX_LOADING, GDexLoadingClass))
-#define G_IS_DEX_LOADING_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_DEX_LOADING))
-#define G_DEX_LOADING_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_DEX_LOADING, GDexLoadingClass))
+#define G_TYPE_DEX_LOADING g_dex_loading_get_type()
+#define G_DEX_LOADING(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_DEX_LOADING, GDexLoading))
+#define G_IS_DEX_LOADING(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_DEX_LOADING))
+#define G_DEX_LOADING_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_DEX_LOADING, GDexLoadingClass))
+#define G_IS_DEX_LOADING_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_DEX_LOADING))
+#define G_DEX_LOADING_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_DEX_LOADING, GDexLoadingClass))
/* Fraction de loading à limiter (instance) */
@@ -47,7 +47,6 @@ typedef struct _GDexLoading GDexLoading;
typedef struct _GDexLoadingClass GDexLoadingClass;
-
/* Extrait une représentation générique d'une table Dex. */
typedef GObject * (* dex_loading_cb) (GDexFormat *, uint32_t);