docs/plugins/gst-plugins-bad-plugins.hierarchy: Update hierarchy.
authorSebastian Dröge <slomo@circular-chaos.org>
Fri, 21 Sep 2007 18:00:24 +0000 (18:00 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Fri, 21 Sep 2007 18:00:24 +0000 (18:00 +0000)
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
ext/gio/gstgiosrc.h

index 6d4de8d..474f7cf 100644 (file)
@@ -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;
index d8b64af..dfed9cd 100644 (file)
@@ -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;