Macros | |
| #define | RT_OPEN_RDONLY 0x0000 |
| File Open Mode definitions. | |
| #define | RT_OPEN_WRONLY 0x0001 |
| Open file for writing only. | |
| #define | RT_OPEN_RDWR 0x0002 |
| Open file for reading and writing. | |
| #define | RT_OPEN_APPEND 0x0008 |
| Open file in append mode. | |
| #define | RT_OPEN_CREATE 0x0100 |
| Create file if it does not exist. | |
| #define | RT_OPEN_TRUNCATE 0x0200 |
| Truncate existing file. | |
| #define RT_OPEN_RDONLY 0x0000 |
File Open Mode definitions.
Open file for reading only
| #define RT_OPEN_WRONLY 0x0001 |
Open file for writing only.
| #define RT_OPEN_RDWR 0x0002 |
Open file for reading and writing.
| #define RT_OPEN_APPEND 0x0008 |
Open file in append mode.
| #define RT_OPEN_CREATE 0x0100 |
Create file if it does not exist.
| #define RT_OPEN_TRUNCATE 0x0200 |
Truncate existing file.