Changeset 72067 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 30, 2018 10:27:37 AM (7 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r72001 r72067 84 84 const std::vector<com::Utf8Str> &aFilters, 85 85 const std::vector<FsObjType_T> &aTypes, 86 const std::vector< GuestCopyFlag_T> &aFlags,86 const std::vector<com::Utf8Str> &aFlags, 87 87 const com::Utf8Str &aDestination, 88 88 ComPtr<IProgress> &aProgress); … … 90 90 const std::vector<com::Utf8Str> &aFilters, 91 91 const std::vector<FsObjType_T> &aTypes, 92 const std::vector< GuestCopyFlag_T> &aFlags,92 const std::vector<com::Utf8Str> &aFlags, 93 93 const com::Utf8Str &aDestination, 94 94 ComPtr<IProgress> &aProgress); … … 267 267 ComPtr<IProgress> &pProgress); 268 268 int i_closeSession(uint32_t uFlags, uint32_t uTimeoutMS, int *pGuestRc); 269 static int i_directoryCopyFlagFromStr(const com::Utf8Str &strFlags, DirectoryCopyFlag_T *pfFlags); 269 270 inline bool i_directoryExists(uint32_t uDirID, ComObjPtr<GuestDirectory> *pDir); 270 271 int i_directoryUnregister(GuestDirectory *pDirectory); … … 276 277 int i_dispatchToObject(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 277 278 int i_dispatchToThis(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb); 279 static int i_fileCopyFlagFromStr(const com::Utf8Str &strFlags, FileCopyFlag_T *pfFlags); 278 280 inline bool i_fileExists(uint32_t uFileID, ComObjPtr<GuestFile> *pFile); 279 281 int i_fileUnregister(GuestFile *pFile); -
trunk/src/VBox/Main/include/GuestSessionImplTasks.h
r72045 r72067 42 42 struct GuestSessionFsSourceSpec 43 43 { 44 GuestSessionFsSourceSpec() 45 : enmType(FsObjType_Unknown) 46 , enmPathStyle(PathStyle_Unknown) 47 , fDryRun(false) 48 , fFollowSymlinks(false) { } 49 44 50 Utf8Str strSource; 45 51 Utf8Str strFilter;
Note:
See TracChangeset
for help on using the changeset viewer.