|
const int | FILE_OPEN_READ = 1 << 0 |
| Open the file as readable.
|
|
const int | FILE_OPEN_WRITE = 1 << 1 |
| Open the file as writable.
|
|
const int | FILE_OPEN_CREATE = 1 << 2 |
| Create the file, if it does not already exist.
|
|
const int | FILE_OPEN_APPEND = 1 << 4 |
| Opens the file with the file offset set to the end of the file.
|
|
Values passed as the flags
parameter to File_Open. Can be bitwise OR'd to combine effects.