hollyhock
|
Variables | |
const int | OPEN_READ = 1 << 0 |
Open the file as readable. | |
const int | OPEN_WRITE = 1 << 1 |
Open the file as writable. | |
const int | OPEN_CREATE = 1 << 2 |
Create the file, if it does not already exist. | |
const int | 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 open. Can be bitwise OR'd to combine effects.