Changeset 6984 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Feb 18, 2008 10:50:55 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/fileio-win.cpp
r6971 r6984 233 233 * Turn off indexing of directory through Windows Indexing Service 234 234 */ 235 if ( (dwCreationDisposition == OPEN_ALWAYS) 236 || (dwCreationDisposition == CREATE_NEW) 237 || (dwCreationDisposition == CREATE_ALWAYS)) 235 if (fOpen & RTFILE_O_NOT_CONTENT_INDEXED) 238 236 { 239 237 if (FALSE == SetFileAttributes(pszFilename, FILE_ATTRIBUTE_NOT_CONTENT_INDEXED)) … … 264 262 * Turn off indexing of directory through Windows Indexing Service 265 263 */ 266 if ( (dwCreationDisposition == OPEN_ALWAYS) 267 || (dwCreationDisposition == CREATE_NEW) 268 || (dwCreationDisposition == CREATE_ALWAYS)) 264 if (fOpen & RTFILE_O_NOT_CONTENT_INDEXED) 269 265 { 270 266 if (FALSE == SetFileAttributesW(pwszFilename, FILE_ATTRIBUTE_NOT_CONTENT_INDEXED))
Note:
See TracChangeset
for help on using the changeset viewer.