Topic complex |
Stream functions |
Function |
f_seek() |
Short |
Sets the current position within a stream |
Syntax |
f_seek(hdl, pos : integer) : integer |
Parameter |
hdl : Handle return by f_create or f_open
pos : New position in the stream (1st Byte => pos=0,...) |
Return |
0 : Position changed successfully
otherwise the operating systems error code |
See also: |
|
Description |
This function places the position cursor on the stream to any position. From that point the proximate write or read commands will take place
|