enum SeekOps { Seek_Set = 0, Seek_Cur = 1, Seek_End = 2 };
Flags set for performing seek operation in a file.
Members |
Description |
Seek_Set = 0 |
Seeks and points to the beginning of the file. |
Seek_Cur = 1 |
Seeks and points to the current position in the file. |
Seek_End = 2 |
Seeks and points to the end of a file. |
SF_File.h