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