efl/src/lib/ecore/efl_io_positioner_fd.eo

23 lines
450 B
Plaintext

mixin Efl.Io.Positioner.Fd (Efl.Io.Positioner) {
[[Positions fd using lseek(2).
@since 1.19
]]
methods {
@property positioner_fd {
[[Positionier file descriptor]]
get {}
set @protected {}
values {
fd: int; [[File descriptor]]
}
}
}
implements {
Efl.Io.Positioner.seek;
Efl.Io.Positioner.position { get; }
}
}