VirtualBox

Changeset 98773 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Feb 28, 2023 10:29:21 AM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
156080
Message:

Guest Control: Added some more GSTCTL_CREATEDIRECTORY_F_ flags. bugref:9783

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/GuestHost/GuestControl.h

    r98709 r98773  
    163163 */
    164164/** Does not specify anything. */
    165 #define GSTCTL_CREATEDIRECTORY_F_NONE       UINT32_C(0)
     165#define GSTCTL_CREATEDIRECTORY_F_NONE                              UINT32_C(0)
    166166/** 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)
    168176/** Mask of valid flags. */
    169 #define GSTCTL_CREATEDIRECTORY_F_VALID_MASK UINT32_C(0x00000001)
     177#define GSTCTL_CREATEDIRECTORY_F_VALID_MASK                        UINT32_C(0x0000001F)
    170178/** @} */
    171179
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette