Changeset 105018 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jun 25, 2024 11:06:29 AM (7 months ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleSharedFolderImpl.h
r105016 r105018 89 89 const Utf8Str &i_getAutoMountPoint() const; 90 90 91 /**92 * Public internal method for getting the symlink policy.93 */94 const SymlinkPolicy_T i_getSymlinkPolicy() const;95 96 91 protected: 97 92 … … 105 100 private: 106 101 107 // wrapped ISharedFolder proper ties.102 // wrapped ISharedFolder properies. 108 103 HRESULT getName(com::Utf8Str &aName); 109 104 HRESULT getHostPath(com::Utf8Str &aHostPath); … … 116 111 HRESULT setAutoMountPoint(com::Utf8Str const &aAutoMountPoint); 117 112 HRESULT getLastAccessError(com::Utf8Str &aLastAccessError); 118 HRESULT getSymlinkPolicy(SymlinkPolicy_T *aSymlinkPolicy);119 HRESULT setSymlinkPolicy(SymlinkPolicy_T aSymlinkPolicy);120 113 121 114 VirtualBoxBase * const mParent; -
trunk/src/VBox/Main/include/MachineImpl.h
r105016 r105018 911 911 friend class RecordingScreenSettings; 912 912 friend class SessionMachine; 913 friend class SharedFolder;914 913 friend class SnapshotMachine; 915 914 friend class VirtualBox; -
trunk/src/VBox/Main/include/SharedFolderImpl.h
r105016 r105018 49 49 // public initializer/uninitializer for internal purposes only 50 50 HRESULT init(Machine *aMachine, const com::Utf8Str &aName, const com::Utf8Str &aHostPath, 51 bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError, 52 SymlinkPolicy_T enmSymlinkPolicy); 51 bool aWritable, bool aAutoMount, const com::Utf8Str &aAutoMountPoint, bool fFailOnError); 53 52 HRESULT initCopy(Machine *aMachine, SharedFolder *aThat); 54 53 // HRESULT init(Console *aConsole, const com::Utf8Str &aName, const com::Utf8Str &aHostPath, … … 90 89 const Utf8Str &i_getAutoMountPoint() const; 91 90 92 /**93 * Public internal method for getting the symlink policy.94 */95 const SymlinkPolicy_T i_getSymlinkPolicy() const;96 97 91 protected: 98 92 … … 103 97 bool aAutoMount, 104 98 const com::Utf8Str &aAutoMountPoint, 105 bool fFailOnError, 106 SymlinkPolicy_T enmSymlinkPolicy); 99 bool fFailOnError); 107 100 private: 108 101 109 // wrapped ISharedFolder proper ties.102 // wrapped ISharedFolder properies. 110 103 HRESULT getName(com::Utf8Str &aName); 111 104 HRESULT getHostPath(com::Utf8Str &aHostPath); … … 118 111 HRESULT setAutoMountPoint(com::Utf8Str const &aAutoMountPoint); 119 112 HRESULT getLastAccessError(com::Utf8Str &aLastAccessError); 120 HRESULT getSymlinkPolicy(SymlinkPolicy_T *aSymlinkPolicy);121 HRESULT setSymlinkPolicy(SymlinkPolicy_T aSymlinkPolicy);122 113 123 114 VirtualBoxBase * const mParent;
Note:
See TracChangeset
for help on using the changeset viewer.