diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-09-21 18:00:24 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-09-21 18:00:24 +0000 |
commit | 5300836ec5e733e4b34c2c8a5d575b55911d4155 (patch) | |
tree | 495283a12524e67ba62f408c66f8891fa0f71e66 /ext/gio | |
parent | e0b2f9b804d49dccd299c1f24641607b9a20e795 (diff) | |
download | gst-plugins-bad-5300836ec5e733e4b34c2c8a5d575b55911d4155.tar.gz gst-plugins-bad-5300836ec5e733e4b34c2c8a5d575b55911d4155.tar.bz2 gst-plugins-bad-5300836ec5e733e4b34c2c8a5d575b55911d4155.zip |
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.
Diffstat (limited to 'ext/gio')
-rw-r--r-- | ext/gio/gstgiosink.h | 6 | ||||
-rw-r--r-- | ext/gio/gstgiosrc.h | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/ext/gio/gstgiosink.h b/ext/gio/gstgiosink.h index 6d4de8d6..474f7cfd 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 d8b64af4..dfed9cde 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; |