VirtualBox

Changeset 75891 in vbox for trunk/src/VBox/Main/src-client


Ignore:
Timestamp:
Dec 3, 2018 11:27:32 AM (6 years ago)
Author:
vboxsync
Message:

Guest Control/Main: Added stubs for IGuestSession::fsObjMoveArray() and IGuestSession::fsObjCopyArray().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r75868 r75891  
    39303930}
    39313931
     3932HRESULT 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
     3941HRESULT 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
    39323950HRESULT GuestSession::fsObjSetACL(const com::Utf8Str &aPath, BOOL aFollowSymlinks, const com::Utf8Str &aAcl, ULONG aMode)
    39333951{
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