Source position: glib.pp line 1095
type TGIOFuncs = record |
io_read: function( |
channel: PGIOChannel; |
buf: Pgchar; |
count: guint; |
bytes_read: Pguint |
):TGIOError; |
io_write: function( |
channel: PGIOChannel; |
buf: Pgchar; |
count: guint; |
bytes_written: Pguint |
):TGIOError; |
io_seek: function( |
channel: PGIOChannel; |
offset: gint; |
thetype: TGSeekType |
):TGIOError; |
io_close: procedure( |
channel: PGIOChannel |
); |
io_add_watch: function( |
channel: PGIOChannel; |
priority: gint; |
condition: TGIOCondition; |
func: TGIOFunc; |
user_data: gpointer; |
notify: TGDestroyNotify |
):guint; |
io_free: procedure( |
channel: PGIOChannel |
); |
end; |