Changeset 77069 in vbox for trunk/include/VBox
- Timestamp:
- Jan 31, 2019 11:59:33 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/GuestControl.h
r76585 r77069 80 80 #define SESSIONCREATIONFLAG_NONE 0x0 81 81 82 /** @name DIRREMOVE _FLAG_XXX - Guest directory removement flags.82 /** @name DIRREMOVEREC_FLAG_XXX - Guest directory removement flags. 83 83 * Essentially using what IPRT's RTDIRRMREC_F_ 84 84 * defines have to offer. 85 85 * @{ 86 86 */ 87 #define DIRREMOVE_FLAG_RECURSIVE RT_BIT(0) 87 /** No remove flags specified. */ 88 #define DIRREMOVEREC_FLAG_NONE UINT32_C(0x0) 89 /** Recursively deletes the directorie's contents. */ 90 #define DIRREMOVEREC_FLAG_RECURSIVE RT_BIT(0) 88 91 /** Delete the content of the directory and the directory itself. */ 89 #define DIRREMOVE _FLAG_CONTENT_AND_DIR RT_BIT(1)92 #define DIRREMOVEREC_FLAG_CONTENT_AND_DIR RT_BIT(1) 90 93 /** Only delete the content of the directory, omit the directory it self. */ 91 #define DIRREMOVE _FLAG_CONTENT_ONLY RT_BIT(2)94 #define DIRREMOVEREC_FLAG_CONTENT_ONLY RT_BIT(2) 92 95 /** Mask of valid flags. */ 93 #define DIRREMOVE _FLAG_VALID_MASK UINT32_C(0x00000003)96 #define DIRREMOVEREC_FLAG_VALID_MASK UINT32_C(0x00000003) 94 97 /** @} */ 95 98
Note:
See TracChangeset
for help on using the changeset viewer.