Changeset 15661 in vbox
- Timestamp:
- Dec 18, 2008 2:21:08 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DVDDriveImpl.cpp
r15334 r15661 246 246 { 247 247 Guid imageId = aImageId; 248 if (imageId.isEmpty()) 249 return E_INVALIDARG; 248 CheckComArgExpr(aImageId, !imageId.isEmpty()); 250 249 251 250 AutoCaller autoCaller (this); -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r15649 r15661 8766 8766 8767 8767 <method name="mountImage"> 8768 <desc>Mounts a CD/DVD image with the specified UUID.</desc> 8768 <desc>Mounts a CD/DVD image with the specified UUID. 8769 8770 <result name="VBOX_E_FILE_ERROR"> 8771 Invalid image file location. 8772 </result> 8773 <result name="VBOX_E_OBJECT_NOT_FOUND"> 8774 Could not find a CD/DVD image matching @a imageID. 8775 </result> 8776 <result name="VBOX_E_INVALID_OBJECT_STATE"> 8777 Invalid media state. 8778 </result> 8779 8780 </desc> 8769 8781 <param name="imageId" type="uuid" dir="in"/> 8770 8782 </method>
Note:
See TracChangeset
for help on using the changeset viewer.