FSSeekFileMode


Definitions

#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;
    

Description

This enumeration expresses the base position that is specified by the FS_SeekFile function.
It is 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.

See Also

FS_SeekFile, FS_SeekFileToBegin, FS_SeekFileToEnd

Revision History

04/01/2004 Initial version