Changeset 71219 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 5, 2018 9:32:09 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r71213 r71219 76 76 /** @name Directory handling primitives. 77 77 * @{ */ 78 int directoryCreate(const com::Utf8Str &strPath, DirectoryCreateFlag_T enmDirecotryCreateFlags, uint32_t uMode, bool fFollowSymlinks); 78 int directoryCreate(const com::Utf8Str &strPath, DirectoryCreateFlag_T enmDirecotryCreateFlags, uint32_t uMode, 79 bool fFollowSymlinks); 79 80 /** @} */ 80 81 81 82 /** @name File handling primitives. 82 83 * @{ */ 83 int fileCopyToGuestEx(const Utf8Str &strSource, const Utf8Str &strDest, FileCopyFlag_T enmFileCopyFlags, PRTFILE pFile, uint64_t cbOffset, uint64_t cbSize); 84 int fileCopyToGuestEx(const Utf8Str &strSource, const Utf8Str &strDest, FileCopyFlag_T enmFileCopyFlags, PRTFILE pFile, 85 uint64_t cbOffset, uint64_t cbSize); /**< r=bird: 'cbOffset' makes no sense what so ever. It should be 'off', or do you mean sizeof(uint64_t)? */ 84 86 int fileCopyToGuest(const Utf8Str &strSource, const Utf8Str &strDest, FileCopyFlag_T enmFileCopyFlags); 85 87 /** @} */ … … 144 146 public: 145 147 146 SessionTaskCopyDirFrom(GuestSession *pSession, 147 const Utf8Str &strSource, const Utf8Str &strDest, const Utf8Str &strFilter,DirectoryCopyFlags_T enmDirCopyFlags);148 SessionTaskCopyDirFrom(GuestSession *pSession, const Utf8Str &strSource, const Utf8Str &strDest, const Utf8Str &strFilter, 149 DirectoryCopyFlags_T enmDirCopyFlags); 148 150 virtual ~SessionTaskCopyDirFrom(void); 149 151 int Run(void); … … 151 153 protected: 152 154 153 int directoryCopyToHost(const Utf8Str &strSource, const Utf8Str &strFilter, const Utf8Str &strDest, bool fRecursive, bool fFollowSymlinks,154 const Utf8Str &strSubDir /* For recursion. */);155 int directoryCopyToHost(const Utf8Str &strSource, const Utf8Str &strFilter, const Utf8Str &strDest, bool fRecursive, 156 bool fFollowSymlinks, const Utf8Str &strSubDir /* For recursion. */); 155 157 protected: 156 158 … … 168 170 public: 169 171 170 SessionTaskCopyDirTo(GuestSession *pSession, 171 const Utf8Str &strSource, const Utf8Str &strDest, const Utf8Str &strFilter,DirectoryCopyFlags_T enmDirCopyFlags);172 SessionTaskCopyDirTo(GuestSession *pSession, const Utf8Str &strSource, const Utf8Str &strDest, const Utf8Str &strFilter, 173 DirectoryCopyFlags_T enmDirCopyFlags); 172 174 virtual ~SessionTaskCopyDirTo(void); 173 175 int Run(void); … … 175 177 protected: 176 178 177 int directoryCopyToGuest(const Utf8Str &strSource, const Utf8Str &strFilter, const Utf8Str &strDest, bool fRecursive, bool fFollowSymlinks,178 const Utf8Str &strSubDir /* For recursion. */);179 int directoryCopyToGuest(const Utf8Str &strSource, const Utf8Str &strFilter, const Utf8Str &strDest, bool fRecursive, 180 bool fFollowSymlinks, const Utf8Str &strSubDir /* For recursion. */); 179 181 protected: 180 182
Note:
See TracChangeset
for help on using the changeset viewer.