Changeset 47783 in vbox
- Timestamp:
- Aug 16, 2013 8:37:29 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88044
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r47762 r47783 604 604 * compatible flags, which then can be used with RTFileOpen* APIs. 605 605 * 606 * Note: Handling sharing modes is not supported yet, so RTFILE_O_DENY_NONE 607 * will be used by default. 608 * 606 609 * @return IPRT status code. 607 610 * @param pszMode Mode string to convert. … … 629 632 * 630 633 * Sharing modes: 631 * Not implemented yet. 634 * Not implemented yet. RTFILE_O_DENY_NONE will be 635 * used by default. 632 636 * 633 637 * @return IPRT status code. -
trunk/src/VBox/Runtime/common/misc/RTFileModeToFlags.cpp
r47782 r47783 183 183 184 184 /* No action mask set? */ 185 if ((uMode & RTFILE_O_ACTION_MASK) == 0) 185 if ( RT_SUCCESS(rc) 186 && (uMode & RTFILE_O_ACTION_MASK) == 0) 186 187 rc = VERR_INVALID_PARAMETER; 188 189 /** @todo Handle sharing mode. */ 190 uMode |= RTFILE_O_DENY_NONE; 187 191 188 192 if (RT_SUCCESS(rc)) … … 317 321 318 322 /** @todo Handle sharing mode. */ 323 uMode |= RTFILE_O_DENY_NONE; 319 324 320 325 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.