Changeset 42695 in vbox for trunk/src/VBox
- Timestamp:
- Aug 8, 2012 10:56:44 PM (12 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestSessionImpl.h
r42693 r42695 87 87 PRTFILE mSourceFile; 88 88 size_t mSourceOffset; 89 size_tmSourceSize;89 uint64_t mSourceSize; 90 90 Utf8Str mDest; 91 91 uint32_t mCopyFileFlags; -
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r42693 r42695 2725 2725 } 2726 2726 } 2727 return hr; 2727 2728 #else /* Legacy, can be removed later. */ 2728 2729 ComObjPtr<Progress> progress; -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r42694 r42695 145 145 146 146 SessionTaskCopyTo::SessionTaskCopyTo(GuestSession *pSession, 147 PRTFILE pSourceFile, size_t cbSourceOffset, size_t cbSourceSize,147 PRTFILE pSourceFile, size_t cbSourceOffset, uint64_t cbSourceSize, 148 148 const Utf8Str &strDest, uint32_t uFlags) 149 149 : GuestSessionTask(pSession)
Note:
See TracChangeset
for help on using the changeset viewer.