- Timestamp:
- Jun 25, 2009 12:33:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.0/pjlib/src/pj/file_io_win32.c
r2394 r2807 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 * See http://trac.pjsip.org/repos/ticket/825 68 */ 62 69 dwDesiredAccess |= FILE_APPEND_DATA; 70 #endif 63 71 dwCreationDisposition |= OPEN_ALWAYS; 64 72 } else {
Note: See TracChangeset
for help on using the changeset viewer.