Changeset 35560 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 14, 2011 1:37:32 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69444
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r35374 r35560 2711 2711 AssertReturn(pIMount, VERR_INVALID_POINTER); 2712 2712 2713 /* Unmount the media .*/2714 rc = pIMount->pfnUnmount(pIMount, fForceUnmount );2713 /* Unmount the media (but do not eject the medium!) */ 2714 rc = pIMount->pfnUnmount(pIMount, fForceUnmount, false /*=fEject*/); 2715 2715 if (rc == VERR_PDM_MEDIA_NOT_MOUNTED) 2716 2716 rc = VINF_SUCCESS; 2717 /* for example if the medium is locked */ 2718 else if (RT_FAILURE(rc)) 2719 return rc; 2717 2720 } 2718 2721 }
Note:
See TracChangeset
for help on using the changeset viewer.