mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-25 11:27:53 +02:00
Remove mention of non-existing calls from docs
The docs mentions a separate seekable API for the various file streams which don't actually exists. Change this to refer to the generic GSeekable calls.
This commit is contained in:
@@ -44,12 +44,10 @@
|
||||
*
|
||||
* GFileInputStream implements #GSeekable, which allows the input
|
||||
* stream to jump to arbitrary positions in the file, provided the
|
||||
* filesystem of the file allows it. In addition to the generic
|
||||
* g_seekable_ API, GFileInputStream has its own API for seeking
|
||||
* and positioning. To find the position of a file input stream,
|
||||
* use g_file_input_stream_tell(). To find out if a file input
|
||||
* stream supports seeking, use g_file_input_stream_can_seek().
|
||||
* To position a file input stream, use g_file_input_stream_seek().
|
||||
* filesystem of the file allows it. To find the position of a file
|
||||
* input stream, use g_seekable_tell(). To find out if a file input
|
||||
* stream supports seeking, use g_seekable_stream_can_seek().
|
||||
* To position a file input stream, use g_seekable_seek().
|
||||
**/
|
||||
|
||||
static void g_file_input_stream_seekable_iface_init (GSeekableIface *iface);
|
||||
|
Reference in New Issue
Block a user