Doc updates

svn path=/trunk/; revision=6215
This commit is contained in:
Matthias Clasen 2007-12-30 05:55:23 +00:00
parent 265646ec64
commit c7eee2ff00
3 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2007-12-30 Matthias Clasen <mclasen@redhat.com>
* gfileinputstream.c:
* gfileoutputstream.c:
* gloadableicon.h:
* gunixmounts.c:
* gmount.h:

View File

@ -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);

View File

@ -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);