summaryrefslogtreecommitdiff
path: root/src/format/known.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/known.c')
-rw-r--r--src/format/known.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/format/known.c b/src/format/known.c
index 9a3eef6..c1850bc 100644
--- a/src/format/known.c
+++ b/src/format/known.c
@@ -135,7 +135,7 @@ static void g_known_format_finalize(GKnownFormat *format)
/******************************************************************************
* *
-* Paramètres : format = description de l'exécutable à consulter. *
+* Paramètres : format = description du format connu à consulter. *
* content = contenu binaire à parcourir. *
* *
* Description : Définit le contenu binaire à analyser. *
@@ -159,7 +159,7 @@ void g_known_format_set_content(GKnownFormat *format, GBinContent *content)
/******************************************************************************
* *
-* Paramètres : format = description de l'exécutable à consulter. *
+* Paramètres : format = description du format connu à consulter. *
* *
* Description : Fournit une référence vers le contenu binaire analysé. *
* *
@@ -184,21 +184,21 @@ GBinContent *g_known_format_get_content(const GKnownFormat *format)
/******************************************************************************
* *
-* Paramètres : format = description de l'exécutable à consulter. *
+* Paramètres : format = description du format connu à consulter. *
* *
* Description : Indique la désignation interne du format. *
* *
-* Retour : Description du format. *
+* Retour : Désignation du format. *
* *
* Remarques : - *
* *
******************************************************************************/
-const char *g_known_format_get_name(const GKnownFormat *format)
+char *g_known_format_get_key(const GKnownFormat *format)
{
- const char *result; /* Désignation à retourner */
+ char *result; /* Désignation à retourner */
- result = G_KNOWN_FORMAT_GET_CLASS(format)->get_name(format);
+ result = G_KNOWN_FORMAT_GET_CLASS(format)->get_key(format);
return result;
@@ -207,7 +207,7 @@ const char *g_known_format_get_name(const GKnownFormat *format)
/******************************************************************************
* *
-* Paramètres : format = description de l'exécutable à consulter. *
+* Paramètres : format = description du format connu à consulter. *
* *
* Description : Fournit une description humaine du format. *
* *
@@ -217,9 +217,9 @@ const char *g_known_format_get_name(const GKnownFormat *format)
* *
******************************************************************************/
-const char *g_known_format_get_description(const GKnownFormat *format)
+char *g_known_format_get_description(const GKnownFormat *format)
{
- const char *result; /* Désignation à retourner */
+ char *result; /* Description à retourner */
result = G_KNOWN_FORMAT_GET_CLASS(format)->get_desc(format);