Changeset 98773 in vbox for trunk/include/VBox
- Timestamp:
- Feb 28, 2023 10:29:21 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156080
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/GuestControl.h
r98709 r98773 163 163 */ 164 164 /** Does not specify anything. */ 165 #define GSTCTL_CREATEDIRECTORY_F_NONE UINT32_C(0)165 #define GSTCTL_CREATEDIRECTORY_F_NONE UINT32_C(0) 166 166 /** Also creates parent directories if they don't exist yet. */ 167 #define GSTCTL_CREATEDIRECTORY_F_PARENTS RT_BIT(0) 167 #define GSTCTL_CREATEDIRECTORY_F_PARENTS RT_BIT(0) 168 /** Don't allow symbolic links as part of the path. */ 169 #define GSTCTL_CREATEDIRECTORY_F_NO_SYMLINKS RT_BIT(1) 170 /** Set the not-content-indexed flag (default). Windows only atm. */ 171 #define GSTCTL_CREATEDIRECTORY_F_NOT_CONTENT_INDEXED_DONT_SET RT_BIT(2) 172 /** Ignore errors setting the not-content-indexed flag. Windows only atm. */ 173 #define GSTCTL_CREATEDIRECTORY_F_NOT_CONTENT_INDEXED_NOT_CRITICAL RT_BIT(3) 174 /** Ignore umask when applying the mode. */ 175 #define GSTCTL_CREATEDIRECTORY_F_IGNORE_UMASK RT_BIT(4) 168 176 /** Mask of valid flags. */ 169 #define GSTCTL_CREATEDIRECTORY_F_VALID_MASK UINT32_C(0x00000001)177 #define GSTCTL_CREATEDIRECTORY_F_VALID_MASK UINT32_C(0x0000001F) 170 178 /** @} */ 171 179
Note:
See TracChangeset
for help on using the changeset viewer.