IOFlags
Description:
[ Flags ]
public enum IOFlags
Content:
Enum values:
- APPEND - turns on append mode, corresponds to
o_append (see the documentation of the UNIX
open
syscall)
- NONBLOCK - turns on nonblocking mode,
corresponds to o_nonblock/o_ndelay (see the
documentation of the UNIX
open
syscall)
- IS_READABLE - indicates that the io
channel is readable.
- IS_WRITABLE - indicates that the io
channel is writable.
- IS_WRITEABLE - a misspelled version of
G_IO_FLAG_IS_WRITABLE
that existed before the spelling was fixed in GLib 2.30.
- IS_SEEKABLE - indicates that the io
channel is seekable, i.
- MASK - the mask that specifies all the valid
flags.
- GET_MASK - the mask of the flags that are
returned from get_flags
- SET_MASK - the mask of the flags that the
user can modify with set_flags