Changeset 75891 in vbox
- Timestamp:
- Dec 3, 2018 11:27:32 AM (6 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
-
idl/VirtualBox.xidl (modified) (2 diffs)
-
include/GuestSessionImpl.h (modified) (1 diff)
-
src-client/GuestSessionImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r75819 r75891 12286 12286 <interface 12287 12287 name="IGuestSession" extends="$unknown" 12288 uuid=" 12f1f483-a075-4e2d-a1bd-0ed4580b3489"12288 uuid="3E14C189-4A75-437E-B0BB-7E7C90D0DF2A" 12289 12289 wsmap="managed" 12290 12290 reservedMethods="8" reservedAttributes="12" … … 13303 13303 <param name="flags" type="FsObjMoveFlag" dir="in" safearray="yes"> 13304 13304 <desc>Zero or more <link to="FsObjMoveFlag"/> values.</desc> 13305 </param> 13306 <param name="progress" type="IProgress" dir="return"> 13307 <desc>Progress object to track the operation to completion.</desc> 13308 </param> 13309 </method> 13310 13311 <method name="fsObjMoveArray"> 13312 <desc> 13313 Moves file system objects (files, directories, symlinks, etc) from one 13314 guest location to another. 13315 13316 <result name="E_NOTIMPL"> 13317 Not yet implemented. 13318 </result> 13319 </desc> 13320 <param name="source" type="wstring" dir="in" safearray="yes"> 13321 <desc>Array of paths to the file system objects to move. Guest style path.</desc> 13322 </param> 13323 <param name="destination" type="wstring" dir="in"> 13324 <desc>Where to move the file system objects to (directory). Guest path 13325 style.</desc> 13326 </param> 13327 <param name="flags" type="FsObjMoveFlag" dir="in" safearray="yes"> 13328 <desc>Zero or more <link to="FsObjMoveFlag"/> values.</desc> 13329 </param> 13330 <param name="progress" type="IProgress" dir="return"> 13331 <desc>Progress object to track the operation to completion.</desc> 13332 </param> 13333 </method> 13334 13335 <method name="fsObjCopyArray"> 13336 <desc> 13337 Copies file system objects (files, directories, symlinks, etc) from one 13338 guest location to another. 13339 13340 <result name="E_NOTIMPL"> 13341 Not yet implemented. 13342 </result> 13343 </desc> 13344 <param name="source" type="wstring" dir="in" safearray="yes"> 13345 <desc>Array of paths to the file system objects to copy. Guest style path.</desc> 13346 </param> 13347 <param name="destination" type="wstring" dir="in"> 13348 <desc>Where to copy the file system objects to (directory). Guest path 13349 style.</desc> 13350 </param> 13351 <param name="flags" type="FileCopyFlag" dir="in" safearray="yes"> 13352 <desc>Zero or more <link to="FileCopyFlag"/> values.</desc> 13305 13353 </param> 13306 13354 <param name="progress" type="IProgress" dir="return"> -
trunk/src/VBox/Main/include/GuestSessionImpl.h
r75863 r75891 184 184 const std::vector<FsObjMoveFlag_T> &aFlags, 185 185 ComPtr<IProgress> &aProgress); 186 HRESULT fsObjMoveArray(const std::vector<com::Utf8Str> &aSource, 187 const com::Utf8Str &aDestination, 188 const std::vector<FsObjMoveFlag_T> &aFlags, 189 ComPtr<IProgress> &aProgress); 190 HRESULT fsObjCopyArray(const std::vector<com::Utf8Str> &aSource, 191 const com::Utf8Str &aDestination, 192 const std::vector<FileCopyFlag_T> &aFlags, 193 ComPtr<IProgress> &aProgress); 186 194 HRESULT fsObjSetACL(const com::Utf8Str &aPath, 187 195 BOOL aFollowSymlinks, -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r75868 r75891 3930 3930 } 3931 3931 3932 HRESULT GuestSession::fsObjMoveArray(const std::vector<com::Utf8Str> &aSource, 3933 const com::Utf8Str &aDestination, 3934 const std::vector<FsObjMoveFlag_T> &aFlags, 3935 ComPtr<IProgress> &aProgress) 3936 { 3937 RT_NOREF(aSource, aDestination, aFlags, aProgress); 3938 ReturnComNotImplemented(); 3939 } 3940 3941 HRESULT GuestSession::fsObjCopyArray(const std::vector<com::Utf8Str> &aSource, 3942 const com::Utf8Str &aDestination, 3943 const std::vector<FileCopyFlag_T> &aFlags, 3944 ComPtr<IProgress> &aProgress) 3945 { 3946 RT_NOREF(aSource, aDestination, aFlags, aProgress); 3947 ReturnComNotImplemented(); 3948 } 3949 3932 3950 HRESULT GuestSession::fsObjSetACL(const com::Utf8Str &aPath, BOOL aFollowSymlinks, const com::Utf8Str &aAcl, ULONG aMode) 3933 3951 {
Note:
See TracChangeset
for help on using the changeset viewer.

