1.2.7.4.48 SYS_FS_FILE_SEEK_CONTROL Enum
C
typedef enum
{
/* Set file offset to input number of bytes from the start of file */
SYS_FS_SEEK_SET,
/* Set file offset to its current location plus input number of bytes */
SYS_FS_SEEK_CUR,
/* Set file offset to size of the file plus input number of bytes */
SYS_FS_SEEK_END,
} SYS_FS_FILE_SEEK_CONTROL;
Summary
Lists the various modes of file seek.
Description
This enumeration lists the various modes of file seek. When the application calls the SYS_FS_FileSeek function, it specifies the kind of seek that needs to be performed.
Remarks
None.
