From c7eee2ff000dc79d2946f5815400c8eff0c4b476 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 30 Dec 2007 05:55:23 +0000 Subject: [PATCH] Doc updates svn path=/trunk/; revision=6215 --- gio/ChangeLog | 2 ++ gio/gfileinputstream.c | 5 +++++ gio/gfileoutputstream.c | 4 ++++ 3 files changed, 11 insertions(+) diff --git a/gio/ChangeLog b/gio/ChangeLog index 2a7bc0713..c09c92915 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 c171858ff..a4e81eee4 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 4f8892c0e..b3e89798c 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);