Changeset 56610 in vbox
- Timestamp:
- Jun 23, 2015 5:36:23 PM (9 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r56596 r56610 4181 4181 <interface 4182 4182 name="IMachine" extends="$unknown" 4183 uuid=" 5c3e5503-40c1-f2bb-a949-26b413aa541a"4183 uuid="703510de-8d5e-411b-a25b-378b03382bac" 4184 4184 wsmap="managed" 4185 4185 wrap-hint-server-addinterfaces="IInternalMachineControl" … … 7589 7589 </method> 7590 7590 7591 <method name="applyDefaults"> 7592 <desc> 7593 Applies the defaults for the configured guest OS type. This is 7594 primarily for getting sane settings straight after creating a 7595 new VM, but it can also be applied later. 7596 7597 <note> 7598 This is primarily a shortcut, centralizing the tedious job of 7599 getting the recommended settings and translating them into 7600 settings updates. The settings are made at the end of the call, 7601 but not saved. 7602 </note> 7603 7604 <result name="E_NOTIMPL"> 7605 This method is not implemented yet. 7606 </result> 7607 </desc> 7608 <param name="flags" type="wstring" dir="in"> 7609 <desc> 7610 Additional flags, to be defined later. 7611 </desc> 7612 </param> 7613 </method> 7614 7591 7615 </interface> 7592 7616 … … 9480 9504 <interface 9481 9505 name="IGuestOSType" extends="$unknown" 9482 uuid=" d7cb0243-97bf-48ac-9d44-1c3bade5ea0f"9506 uuid="03cd409d-20f5-43f9-8de1-4a129620990b" 9483 9507 wsmap="struct" 9484 reservedAttributes=" 8"9508 reservedAttributes="16" 9485 9509 > 9486 9510 <desc> -
trunk/src/VBox/Main/include/MachineImpl.h
r56035 r56610 1202 1202 HRESULT restoreSnapshot(const ComPtr<ISnapshot> &aSnapshot, 1203 1203 ComPtr<IProgress> &aProgress); 1204 HRESULT applyDefaults(const com::Utf8Str &aFlags); 1204 1205 1205 1206 // wrapped IInternalMachineControl properties -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r56595 r56610 14744 14744 } 14745 14745 14746 HRESULT Machine::applyDefaults(const com::Utf8Str &aFlags) 14747 { 14748 NOREF(aFlags); 14749 ReturnComNotImplemented(); 14750 } 14751 14746 14752 /* This isn't handled entirely by the wrapper generator yet. */ 14747 14753 #ifdef VBOX_WITH_XPCOM
Note:
See TracChangeset
for help on using the changeset viewer.