From d66e42c7c0c41d3ef7bbaf1a9e7340f8ed68c8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 21 Sep 2007 18:00:24 +0000 Subject: [PATCH] docs/plugins/gst-plugins-bad-plugins.hierarchy: Update hierarchy. Original commit message from CVS: * docs/plugins/gst-plugins-bad-plugins.hierarchy: Update hierarchy. * ext/gio/gstgiosink.h: * ext/gio/gstgiosrc.h: Mark private fields of the instance structs private. --- ext/gio/gstgiosink.h | 6 ++++++ ext/gio/gstgiosrc.h | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ext/gio/gstgiosink.h b/ext/gio/gstgiosink.h index 6d4de8d6f2..474f7cfdd2 100644 --- a/ext/gio/gstgiosink.h +++ b/ext/gio/gstgiosink.h @@ -42,10 +42,16 @@ G_BEGIN_DECLS typedef struct _GstGioSink GstGioSink; typedef struct _GstGioSinkClass GstGioSinkClass; +/** + * GstGioSink: + * + * Opaque data structure. + */ struct _GstGioSink { GstBaseSink sink; + /*< private >*/ GCancellable *cancel; GFile *file; gchar *location; diff --git a/ext/gio/gstgiosrc.h b/ext/gio/gstgiosrc.h index d8b64af432..dfed9cde0f 100644 --- a/ext/gio/gstgiosrc.h +++ b/ext/gio/gstgiosrc.h @@ -42,10 +42,16 @@ G_BEGIN_DECLS typedef struct _GstGioSrc GstGioSrc; typedef struct _GstGioSrcClass GstGioSrcClass; +/** + * GstGioSrc: + * + * Opaque data structure. + */ struct _GstGioSrc { GstBaseSrc src; - + + /*< private >*/ GCancellable *cancel; GFile *file; gchar *location;