Changeset 13025
- Timestamp:
- Oct 15, 2009, 10:12:45 AM (15 years ago)
- File:
-
- 1 edited
-
trunk/source/lisp-kernel/windows-calls.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/windows-calls.c
r12714 r13025 195 195 196 196 if ((flag & _O_WRONLY) == _O_WRONLY) { 197 dwDesiredAccess |= GENERIC_WRITE | FILE_WRITE_DATA | 198 FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES; 197 dwDesiredAccess |= GENERIC_WRITE; 199 198 } else if ((flag & _O_RDWR) == _O_RDWR) { 200 dwDesiredAccess |= GENERIC_WRITE|GENERIC_READ | FILE_READ_DATA | 201 FILE_WRITE_DATA | FILE_READ_ATTRIBUTES | FILE_WRITE_ATTRIBUTES; 199 dwDesiredAccess |= GENERIC_WRITE|GENERIC_READ; 202 200 } else { 203 dwDesiredAccess |= GENERIC_READ | FILE_READ_DATA | FILE_READ_ATTRIBUTES | 204 FILE_WRITE_ATTRIBUTES; 201 dwDesiredAccess |= GENERIC_READ; 205 202 } 206 203
Note:
See TracChangeset
for help on using the changeset viewer.
