Changeset 17200 in vbox for trunk/src/VBox/Main/idl/VirtualBox.xidl
- Timestamp:
- Feb 27, 2009 12:48:14 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43495
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r17193 r17200 6341 6341 </interface> 6342 6342 6343 <enumerator6344 name="IHostDVDDriveEnumerator" type="IHostDVDDrive"6345 uuid="1ed7cfaf-c363-40df-aa4e-89c1afb7d96b"6346 />6347 6348 <collection6349 name="IHostDVDDriveCollection" type="IHostDVDDrive"6350 enumerator="IHostDVDDriveEnumerator"6351 uuid="1909c533-1a1e-445f-a4e1-a267cffc30ed"6352 readonly="yes"6353 >6354 <method name="findByName">6355 <desc>6356 Searches this collection for a host drive with the given name.6357 <note>6358 The method returns an error if the given name does not6359 correspond to any host drive in the collection.6360 </note>6361 </desc>6362 <param name="name" type="wstring" dir="in">6363 <desc>Name of the host drive to search for</desc>6364 </param>6365 <param name="drive" type="IHostDVDDrive" dir="return">6366 <desc>Found host drive object</desc>6367 </param>6368 </method>6369 </collection>6370 6371 6343 <interface 6372 6344 name="IHostFloppyDrive" extends="$unknown" … … 6543 6515 <interface 6544 6516 name="IHost" extends="$unknown" 6545 uuid=" 7c172c42-b209-4bdc-9ddf-a84f222bd59a"6517 uuid="ba0cb246-478a-4a2b-930e-51ce740ada9c" 6546 6518 wsmap="managed" 6547 6519 > … … 6558 6530 6559 6531 </desc> 6560 <attribute name="DVDDrives" type="IHostDVDDrive Collection" readonly="yes">6532 <attribute name="DVDDrives" type="IHostDVDDrive" readonly="yes" safearray="yes"> 6561 6533 <desc>List of DVD drives available on the host.</desc> 6562 6534 </attribute> … … 6833 6805 </method> 6834 6806 6807 <method name="findHostDVDDrive"> 6808 <desc> 6809 Searches for a host DVD drive with the given @c name. 6810 6811 <result name="VBOX_E_OBJECT_NOT_FOUND"> 6812 Given @c name does not correspond to any host drive. 6813 </result> 6814 6815 </desc> 6816 <param name="name" type="wstring" dir="in"> 6817 <desc>Name of the host drive to search for</desc> 6818 </param> 6819 <param name="drive" type="IHostDVDDrive" dir="return"> 6820 <desc>Found host drive object</desc> 6821 </param> 6822 </method> 6823 6835 6824 <method name="findHostNetworkInterfaceByName"> 6836 6825 <desc> 6837 6826 Searches through all host network interfaces for an interface with 6838 the given name.6839 <note> 6840 The method returns an error if the given name does not6827 the given @c name. 6828 <note> 6829 The method returns an error if the given @c name does not 6841 6830 correspond to any host network interface. 6842 6831 </note>
Note:
See TracChangeset
for help on using the changeset viewer.