Changeset 39641 in vbox
- Timestamp:
- Dec 16, 2011 8:14:53 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75438
- Location:
- trunk/include/iprt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dir.h
r39628 r39641 53 53 /** @name RTDirCreate flags. 54 54 * @{ */ 55 /** Don't allow symbolic links as part of the path. */ 55 /** Don't allow symbolic links as part of the path. 56 * @remarks this flag is currently not implemented and will be ignored. */ 56 57 #define RTDIRCREATE_FLAGS_NO_SYMLINKS RT_BIT(0) 57 58 /** @} */ … … 304 305 /** @name RTDirOpenFiltered flags. 305 306 * @{ */ 306 /** Don't allow symbolic links as part of the path. */ 307 /** Don't allow symbolic links as part of the path. 308 * @remarks this flag is currently not implemented and will be ignored. */ 307 309 #define RTDIROPEN_FLAGS_NO_SYMLINKS RT_BIT(0) 308 310 /** @} */ -
trunk/include/iprt/file.h
r39612 r39641 213 213 #define RTFILE_O_NO_CACHE UINT32_C(0x00080000) 214 214 215 /** Don't allow symbolic links as part of the path. */ 215 /** Don't allow symbolic links as part of the path. 216 * @remarks this flag is currently not implemented and will be ignored. */ 216 217 #define RTFILE_O_NO_SYMLINKS UINT32_C(0x20000000) 217 218 … … 565 566 /** Replace destination file if present. */ 566 567 #define RTFILEMOVE_FLAGS_REPLACE 0x1 567 /** Don't allow symbolic links as part of the path. */ 568 /** Don't allow symbolic links as part of the path. 569 * @remarks this flag is currently not implemented and will be ignored. */ 568 570 #define RTFILEMOVE_FLAGS_NO_SYMLINKS 0x2 569 571 /** @} */ -
trunk/include/iprt/path.h
r39628 r39641 127 127 /** Last component: Follow if link. */ 128 128 #define RTPATH_F_FOLLOW_LINK RT_BIT_32(1) 129 /** Don't allow symbolic links as part of the path. */ 129 /** Don't allow symbolic links as part of the path. 130 * @remarks this flag is currently not implemented and will be ignored. */ 130 131 #define RTPATH_F_NO_SYMLINKS RT_BIT_32(2) 131 132 /** @} */ … … 894 895 /** This will replace attempt any target which isn't a directory. */ 895 896 #define RTPATHRENAME_FLAGS_REPLACE RT_BIT(0) 896 /** Don't allow symbolic links as part of the path. */ 897 /** Don't allow symbolic links as part of the path. 898 * @remarks this flag is currently not implemented and will be ignored. */ 897 899 #define RTPATHRENAME_FLAGS_NO_SYMLINKS RT_BIT(1) 898 900 /** @} */ … … 913 915 /** @name RTPathUnlink flags. 914 916 * @{ */ 915 /** Don't allow symbolic links as part of the path. */ 917 /** Don't allow symbolic links as part of the path. 918 * @remarks this flag is currently not implemented and will be ignored. */ 916 919 #define RTPATHUNLINK_FLAGS_NO_SYMLINKS RT_BIT(0) 917 920 /** @} */ -
trunk/include/iprt/symlink.h
r39612 r39641 88 88 /** @name RTSymlinkCreate flags. 89 89 * @{ */ 90 /** Don't allow symbolic links as part of the path. */ 90 /** Don't allow symbolic links as part of the path. 91 * @remarks this flag is currently not implemented and will be ignored. */ 91 92 #define RTSYMLINKCREATE_FLAGS_NO_SYMLINKS RT_BIT(0) 92 93 /** @} */ … … 99 100 * @param pszSymlink The name of the symbolic link. 100 101 * @param pszTarget The path to the symbolic link target. This is 101 * relative to @a pszSymlink .102 * relative to @a pszSymlink or an absolute path. 102 103 * @param enmType The symbolic link type. For Windows compatability 103 104 * it is very important to set this correctly. When … … 112 113 /** @name RTSymlinkDelete flags. 113 114 * @{ */ 114 /** Don't allow symbolic links as part of the path. */ 115 /** Don't allow symbolic links as part of the path. 116 * @remarks this flag is currently not implemented and will be ignored. */ 115 117 #define RTSYMLINKDELETE_FLAGS_NO_SYMLINKS RT_BIT(0) 116 118 /** @} */ … … 132 134 /** @name RTSymlinkRead flags. 133 135 * @{ */ 134 /** Don't allow symbolic links as part of the path. */ 136 /** Don't allow symbolic links as part of the path. 137 * @remarks this flag is currently not implemented and will be ignored. */ 135 138 #define RTSYMLINKREAD_FLAGS_NO_SYMLINKS RT_BIT(0) 136 139 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.