VirtualBox

Changeset 77069 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jan 31, 2019 11:59:33 AM (6 years ago)
Author:
vboxsync
Message:

Guest Control/Main: Check flags of IGuestSession::directoryRemoveRecursive() and renamed DIRREMOVE_FLAG_ flags to DIRREMOVEREC_FLAG_ to match usage.

File:
1 edited

Legend:

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

    r76585 r77069  
    8080#define SESSIONCREATIONFLAG_NONE            0x0
    8181
    82 /** @name DIRREMOVE_FLAG_XXX - Guest directory removement flags.
     82/** @name DIRREMOVEREC_FLAG_XXX - Guest directory removement flags.
    8383 * Essentially using what IPRT's RTDIRRMREC_F_
    8484 * defines have to offer.
    8585 * @{
    8686 */
    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)
    8891/** 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)
    9093/** 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)
    9295/** Mask of valid flags. */
    93 #define DIRREMOVE_FLAG_VALID_MASK           UINT32_C(0x00000003)
     96#define DIRREMOVEREC_FLAG_VALID_MASK           UINT32_C(0x00000003)
    9497/** @}   */
    9598
Note: See TracChangeset for help on using the changeset viewer.

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