Changeset 2681 for pjproject/trunk/pjlib/src/pj/file_io_win32.c
- Timestamp:
- May 7, 2009 12:49:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/file_io_win32.c
r2394 r2681 60 60 dwDesiredAccess |= GENERIC_WRITE; 61 61 if ((flags & PJ_O_APPEND) == PJ_O_APPEND) { 62 #if !defined(PJ_WIN32_WINCE) || !PJ_WIN32_WINCE 63 /* FILE_APPEND_DATA is invalid on WM2003 and WM5, but it seems 64 * to be working on WM6. All are tested on emulator though. 65 * Removing this also seem to work (i.e. data is appended), so 66 * I guess this flag is "optional". 67 */ 62 68 dwDesiredAccess |= FILE_APPEND_DATA; 69 #endif 63 70 dwCreationDisposition |= OPEN_ALWAYS; 64 71 } else {
Note: See TracChangeset
for help on using the changeset viewer.