From: Matthias Clasen Date: Sun, 30 Dec 2007 05:55:23 +0000 (+0000) Subject: Doc updates X-Git-Tag: GLIB_2_15_1~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7eee2ff000dc79d2946f5815400c8eff0c4b476;p=platform%2Fupstream%2Fglib.git Doc updates svn path=/trunk/; revision=6215 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index 2a7bc07..c09c929 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 c171858..a4e81ee 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 4f8892c..b3e8979 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);