summaryrefslogtreecommitdiff
path: root/src/analysis/loaded-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/loaded-int.h')
-rw-r--r--src/analysis/loaded-int.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/analysis/loaded-int.h b/src/analysis/loaded-int.h
index 0476af5..cd47a6a 100644
--- a/src/analysis/loaded-int.h
+++ b/src/analysis/loaded-int.h
@@ -67,10 +67,17 @@ typedef unsigned int (* get_loaded_view_index_fc) (GLoadedContent *, GtkWidget *
typedef GDisplayOptions * (* get_loaded_options_fc) (const GLoadedContent *, unsigned int);
-/* Accès à un contenu binaire quelconque (interface) */
-struct _GLoadedContentIface
+/* Accès à un contenu binaire quelconque (instance) */
+struct _GLoadedContent
{
- GTypeInterface base_iface; /* A laisser en premier */
+ GObject parent; /* A laisser en premier */
+
+};
+
+/* Accès à un contenu binaire quelconque (classe) */
+struct _GLoadedContentClass
+{
+ GObjectClass parent; /* A laisser en premier */
/* Méthodes virtuelles */
@@ -99,9 +106,5 @@ struct _GLoadedContentIface
};
-/* Redéfinition */
-typedef GLoadedContentIface GLoadedContentInterface;
-
-
#endif /* _ANALYSIS_LOADED_INT_H */