Changeset 49079 in vbox for trunk/include/iprt
- Timestamp:
- Oct 14, 2013 2:29:38 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89886
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dir.h
r46014 r49079 55 55 /** Don't allow symbolic links as part of the path. 56 56 * @remarks this flag is currently not implemented and will be ignored. */ 57 #define RTDIRCREATE_FLAGS_NO_SYMLINKS RT_BIT(0) 57 #define RTDIRCREATE_FLAGS_NO_SYMLINKS RT_BIT(0) 58 /** Set the not-content-indexed flag (default). Windows only atm. */ 59 #define RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_DONT_SET RT_BIT(1) 60 /** Do not set the not-content-indexed flag. Windows only atm. */ 61 #define RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_DONT_SET RT_BIT(1) 62 /** Ignore errors setting the not-content-indexed flag. Windows only atm. */ 63 #define RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL RT_BIT(2) 58 64 /** @} */ 59 65
Note:
See TracChangeset
for help on using the changeset viewer.