Changeset 11441 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Aug 15, 2008 1:08:50 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r11433 r11441 1771 1771 <method name="getGuestOSType"> 1772 1772 <desc> 1773 Obtain guest os type information from guest os typeid, such as 1774 "win31" or "ubuntu". Use <link to="IMachine::OSTypeId"/> attribute 1775 to figure out typeid of particular guest VM. See 1776 <link to="IVirtualBox::guestOSTypes"/> for the list of available 1777 OS types. 1778 </desc> 1779 <param name="id" type="wstring" dir="in"/> 1780 <param name="type" type="IGuestOSType" dir="return"/> 1773 Returns an object describing the specified guest OS type. 1774 1775 The requested guest OS type is specified using a string which is a 1776 mnemonic identifier of the guest operating system, such as 1777 <tt>"win31"</tt> or <tt>"ubuntu"</tt>. The guest OS type ID of a 1778 particular virtual machine can be read or set using the 1779 <link to="IMachine::OSTypeId"/> attribute. 1780 1781 The <link to="IVirtualBox::guestOSTypes"/> collection contains all 1782 available guest OS type objects. Each object has an 1783 <link to="IGuestOSType::id"/> attribute which contains an identifier of 1784 the guest OS this object describes. 1785 </desc> 1786 <param name="id" type="wstring" dir="in"> 1787 <desc>Guest OS type ID string.</desc> 1788 </param> 1789 <param name="type" type="IGuestOSType" dir="return"> 1790 <desc>Guest OS type object.</desc> 1791 </param> 1781 1792 </method> 1782 1793 … … 4725 4736 4726 4737 This method is equivalent to 4727 doing <link to="#discardSnapshot">discardSnapshot</link> 4728 (<link 4729 to="IMachine::currentSnapshot">currentSnapshot</link>.<link 4730 to="ISnapshot::id">id()</link>, ...) followed by 4738 doing <link to="IConsole::discardSnapshot">discardSnapshot</link> 4739 (currentSnapshot.id(), progress) followed by 4731 4740 <link to="#discardCurrentState()"/>. 4732 4741 … … 4741 4750 it. This differs from performing a single 4742 4751 <link to="#discardSnapshot()"/> call (note that no 4743 <link to="#discardCurrentState()"/> will be possible after it) to the4744 effect that the latter will preserve the current state instead of4752 <link to="#discardCurrentState()"/> will be possible after it) 4753 to the effect that the latter will preserve the current state instead of 4745 4754 discarding it. 4746 4755 … … 4756 4765 If the machine state is <link to="MachineState::Saved">Saved</link> 4757 4766 prior to this operation, the saved state file will be implicitly 4758 discarded (as if <link to="IConsole::discardSavedState()"/> were 4759 called).</note> 4767 discarded (as if <link to="#discardSavedState()"/> were 4768 called). 4769 </note> 4760 4770 4761 4771 <note> … … 8720 8730 Flag whether this serial port acts as a server (creates a new pipe on 8721 8731 the host) or as a client (uses the existing pipe). This attribute is 8722 used only when #hostMode is PortMode::HostPipePort.8732 used only when <link to="#hostMode"/> is PortMode::HostPipe. 8723 8733 </desc> 8724 8734 </attribute> … … 8726 8736 <attribute name="path" type="wstring"> 8727 8737 <desc> 8728 Path to the serial port's pipe on the host when #hostMode is 8729 PortMode::HostPipePort, or the host serial device name when #hostMode 8730 is PortMode::HostDevicePort. In either of the above cases, setting a 8731 @c null or an empty string as the attribute's value will result into 8732 an error. Otherwise, the value of this property is ignored. 8738 Path to the serial port's pipe on the host when <link to="#hostMode"/> is 8739 PortMode::HostPipe, or the host serial device name when 8740 <link to="#hostMode"/> is PortMode::HostDevice. In either of the above 8741 cases, setting a @c null or an empty string as the attribute's value 8742 will result into an error. Otherwise, the value of this property is 8743 ignored. 8733 8744 </desc> 8734 8745 </attribute> … … 9391 9402 the product. This also means that (<link 9392 9403 to="IConsole::attachUSBDevice()"/>) can only succeed on Win32 if 9393 the device state is # USBDeviceHeld.9404 the device state is #Held. 9394 9405 </note> 9395 9406
Note:
See TracChangeset
for help on using the changeset viewer.