Changeset 77970 in vbox for trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
- Timestamp:
- Apr 1, 2019 1:35:07 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129706
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvmmbr.cpp
r77256 r77970 648 648 } 649 649 650 static DECLCALLBACK(int) rtDvmFmtMbrVolumeQueryRange(RTDVMVOLUMEFMT hVolFmt, uint64_t *poffStart, uint64_t *poff End)650 static DECLCALLBACK(int) rtDvmFmtMbrVolumeQueryRange(RTDVMVOLUMEFMT hVolFmt, uint64_t *poffStart, uint64_t *poffLast) 651 651 { 652 652 PRTDVMVOLUMEFMTINTERNAL pVol = hVolFmt; 653 653 *poffStart = pVol->pEntry->offPart; 654 *poff End= pVol->pEntry->offPart + pVol->pEntry->cbPart - 1;654 *poffLast = pVol->pEntry->offPart + pVol->pEntry->cbPart - 1; 655 655 return VINF_SUCCESS; 656 656 }
Note:
See TracChangeset
for help on using the changeset viewer.