summaryrefslogtreecommitdiff
path: root/src/analysis/content-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/content-int.h')
-rw-r--r--src/analysis/content-int.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/analysis/content-int.h b/src/analysis/content-int.h
index f3d698e..24247ed 100644
--- a/src/analysis/content-int.h
+++ b/src/analysis/content-int.h
@@ -29,6 +29,12 @@
+/* Associe un ensemble d'attributs au contenu binaire. */
+typedef void (* set_content_attributes) (GBinContent *, GContentAttributes *);
+
+/* Fournit l'ensemble des attributs associés à un contenu. */
+typedef GContentAttributes * (* get_content_attributes) (const GBinContent *);
+
/* Donne l'origine d'un contenu binaire. */
typedef GBinContent * (* get_content_root_fc) (GBinContent *);
@@ -86,6 +92,9 @@ struct _GBinContentIface
{
GTypeInterface base_iface; /* A laisser en premier */
+ set_content_attributes set_attribs; /* Enregistrement d'attributs */
+ get_content_attributes get_attribs; /* Fourniture d'attributs */
+
get_content_root_fc get_root; /* Renvoie à l'origine */
describe_content_fc describe; /* Fournit une description */