Changeset 622 for pjproject/trunk/pjlib/include/pj/file_io.h
- Timestamp:
- Jul 22, 2006 1:42:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/file_io.h
r66 r622 62 62 PJ_O_RDWR = 0x1103, /**< Open file for reading and writing. 63 63 File will be truncated. */ 64 PJ_O_APPEND = 0x1108 ,/**< Append to existing file. */64 PJ_O_APPEND = 0x1108 /**< Append to existing file. */ 65 65 }; 66 66 … … 72 72 PJ_SEEK_SET = 0x1201, /**< Offset from beginning of the file. */ 73 73 PJ_SEEK_CUR = 0x1202, /**< Offset from current position. */ 74 PJ_SEEK_END = 0x1203 ,/**< Size of the file plus offset. */74 PJ_SEEK_END = 0x1203 /**< Size of the file plus offset. */ 75 75 }; 76 76
Note: See TracChangeset
for help on using the changeset viewer.