Changeset 48505 in vbox
- Timestamp:
- Sep 17, 2013 3:48:55 PM (11 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r48431 r48505 4122 4122 <interface 4123 4123 name="IMachine" extends="$unknown" 4124 uuid=" 59b33148-7f87-4224-82a7-d141ef49fc0d"4124 uuid="8c931034-83f6-46b8-97f0-31e70d30402e" 4125 4125 wsmap="managed" 4126 4126 > … … 4548 4548 </attribute> 4549 4549 4550 <attribute name="settingsFilePath" type="wstring" readonly="yes">4550 <attribute name="settingsFilePath" type="wstring"> 4551 4551 <desc> 4552 4552 Full name of the file containing machine settings data. 4553 4554 Currently, it is an error to change this property on any machine. 4555 Later this will allow setting a new path for the settings file, with 4556 automatic relocation of all files (including snapshots and disk images) 4557 which are inside the base directory. 4558 4559 <note> 4560 Setting this property to @c null or to an empty string is forbidden. 4561 </note> 4562 <note> 4563 When setting this property, the specified path must be absolute. When 4564 reading this property, an absolute (full) path is always returned. 4565 </note> 4566 <note> 4567 The specified path may not exist, it will be created when necessary. 4568 </note> 4553 4569 </desc> 4554 4570 </attribute> -
trunk/src/VBox/Main/include/MachineImpl.h
r48431 r48505 457 457 STDMETHOD(COMGETTER(USBDeviceFilters))(IUSBDeviceFilters * *aUSBDeviceFilters); 458 458 STDMETHOD(COMGETTER(SettingsFilePath))(BSTR *aFilePath); 459 STDMETHOD(COMSETTER(SettingsFilePath))(IN_BSTR aFilePath); 459 460 STDMETHOD(COMGETTER(SettingsModified))(BOOL *aModified); 460 461 STDMETHOD(COMGETTER(SessionState))(SessionState_T *aSessionState); -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r48431 r48505 2752 2752 mData->m_strConfigFileFull.cloneTo(aFilePath); 2753 2753 return S_OK; 2754 } 2755 2756 STDMETHODIMP Machine::COMSETTER(SettingsFilePath)(IN_BSTR aFilePath) 2757 { 2758 CheckComArgStrNotEmptyOrNull(aFilePath); 2759 2760 AutoCaller autoCaller(this); 2761 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 2762 2763 ReturnComNotImplemented(); 2754 2764 } 2755 2765
Note:
See TracChangeset
for help on using the changeset viewer.