- Timestamp:
- Jul 4, 2016 4:18:43 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108472
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r61915 r62014 4363 4363 <interface 4364 4364 name="IMachine" extends="$unknown" 4365 uuid=" 95565a66-622a-4ad0-4eed-9bb83c91c5be"4365 uuid="b2547866-a0a1-4391-8b86-6952d82efaa0" 4366 4366 wsmap="managed" 4367 4367 wrap-hint-server-addinterfaces="IInternalMachineControl" 4368 4368 wrap-hint-server="manualaddinterfaces" 4369 reservedMethods=" 8" reservedAttributes="10"4369 reservedMethods="7" reservedAttributes="10" 4370 4370 > 4371 4371 <!-- Note! This interface is not compatible between 5.0 and 5.1 as it had too many … … 4843 4843 </attribute> 4844 4844 4845 <attribute name="settingsAuxFilePath" type="wstring" readonly="yes" wrap-hint-server="limitedcaller"> 4846 <desc> 4847 Full name of the file containing auxiliary machine settings data. 4848 </desc> 4849 </attribute> 4850 4845 4851 <attribute name="settingsModified" type="boolean" readonly="yes"> 4846 4852 <desc> … … 5990 5996 </param> 5991 5997 </method> 5992 5993 5998 5994 5999 <method name="unmountMedium"> -
trunk/src/VBox/Main/include/MachineImpl.h
r61042 r62014 932 932 HRESULT getStorageControllers(std::vector<ComPtr<IStorageController> > &aStorageControllers); 933 933 HRESULT getSettingsFilePath(com::Utf8Str &aSettingsFilePath); 934 HRESULT getSettingsAuxFilePath(com::Utf8Str &aSettingsAuxFilePath); 934 935 HRESULT getSettingsModified(BOOL *aSettingsModified); 935 936 HRESULT getSessionState(SessionState_T *aSessionState); -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r61788 r62014 2733 2733 2734 2734 return S_OK; 2735 } 2736 2737 HRESULT Machine::getSettingsAuxFilePath(com::Utf8Str &aSettingsFilePath) 2738 { 2739 ReturnComNotImplemented(); 2735 2740 } 2736 2741
Note:
See TracChangeset
for help on using the changeset viewer.