- canSeek
int function(GSeekable* seekable) canSeek;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- canTruncate
int function(GSeekable* seekable) canTruncate;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- gIface
GTypeInterface gIface;
Undocumented in source.
- seek
int function(GSeekable* seekable, long offset, GSeekType type, GCancellable* cancellable, GError** error) seek;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- tell
long function(GSeekable* seekable) tell;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- truncateFn
int function(GSeekable* seekable, long offset, GCancellable* cancellable, GError** error) truncateFn;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
Provides an interface for implementing seekable functionality on I/O Streams. GTypeInterface g_iface; The parent interface. tell () Tells the current location within a stream. can_seek () Checks if seeking is supported by the stream. seek () Seeks to a location within a stream. can_truncate () Checks if truncation is supported by the stream. truncate_fn () Truncates a stream.