From: Matthias Clasen Date: Sun, 30 Dec 2007 05:55:23 +0000 (+0000) Subject: Doc updates X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=c7eee2ff000dc79d2946f5815400c8eff0c4b476;p=dana%2Fcg-glib.git Doc updates svn path=/trunk/; revision=6215 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index 2a7bc071..c09c9291 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,5 +1,7 @@ 2007-12-30 Matthias Clasen + * gfileinputstream.c: + * gfileoutputstream.c: * gloadableicon.h: * gunixmounts.c: * gmount.h: diff --git a/gio/gfileinputstream.c b/gio/gfileinputstream.c index c171858f..a4e81eee 100644 --- a/gio/gfileinputstream.c +++ b/gio/gfileinputstream.c @@ -36,6 +36,11 @@ * @include: gio.h * @see_also: #GInputStream, #GDataInputStream, #GSeekable * + * GFileInputStream provides input streams that take their + * content from a file. + * + * GFileInputStream implements #GSeekable, which allows + * the input stream to jump to arbitrary positions in the file. **/ static void g_file_input_stream_seekable_iface_init (GSeekableIface *iface); diff --git a/gio/gfileoutputstream.c b/gio/gfileoutputstream.c index 4f8892c0..b3e89798 100644 --- a/gio/gfileoutputstream.c +++ b/gio/gfileoutputstream.c @@ -36,7 +36,11 @@ * @include: gio.h * @see_also: #GOutputStream, #GDataOutputStream, #GSeekable * + * GFileOutputStream provides output streams that write their + * content to a file. * + * GFileOutputStream implements #GSeekable, which allows + * the output stream to jump to arbitrary positions in the file. **/ static void g_file_output_stream_seekable_iface_init (GSeekableIface *iface);