summaryrefslogtreecommitdiff
path: root/src/format/format-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/format-int.h')
-rw-r--r--src/format/format-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/format/format-int.h b/src/format/format-int.h
index 09586b9..354e616 100644
--- a/src/format/format-int.h
+++ b/src/format/format-int.h
@@ -40,6 +40,9 @@
/* Indique la désignation interne du format. */
typedef const char * (* format_get_name_fc) (const GBinFormat *);
+/* Fournit une description humaine du format. */
+typedef const char * (* format_get_desc_fc) (const GBinFormat *);
+
/*Assure l'interprétation d'un format en différé. */
typedef bool (* format_analyze_fc) (GBinFormat *, wgroup_id_t, GtkStatusStack *);
@@ -116,6 +119,7 @@ struct _GBinFormatClass
GObjectClass parent; /* A laisser en premier */
format_get_name_fc get_name; /* Désignation interne */
+ format_get_desc_fc get_desc; /* Désignation humaine */
format_analyze_fc analyze; /* Interprétation du format */