|
const int | FILE_SEEK_SET = 0 |
| Set the file offset to offset .
|
|
const int | FILE_SEEK_CUR = 1 |
| Set the file offset to the current position, plus offset bytes.
|
|
const int | FILE_SEEK_END = 2 |
| Set the file offset to the end of the file, plus offset bytes.
|
|
Values passed as the whence
parameter to File_Lseek.