#include <nitro/fs.h>
typedef enum
{
FS_SEEK_SET, /* seek from begin */
FS_SEEK_CUR, /* seek from current */
FS_SEEK_END /* seek from end */
} FSSeekFileMode;
This enumeration expresses the base position that is specified by the FS_SeekFile
function.
They are defined as follows.
FS_SEEK_SET | Specifies the beginning of the file as the base position. |
FS_SEEK_CUR | Specifies the current position in the file as the base position. |
FS_SEEK_END | Specifies the end of the file as the base position. |
FS_SeekFile, FS_SeekFileToBegin, FS_SeekFileToEnd
04/01/2004 Initial version.