Changeset 66193 in vbox for trunk/src/VBox/Devices/Storage/DrvHostBase.cpp
- Timestamp:
- Mar 22, 2017 1:29:33 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114106
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostBase.cpp
r66192 r66193 396 396 /** @interface_method_impl{PDMIMEDIA,pfnQueryRegionPropertiesForLba} */ 397 397 static DECLCALLBACK(int) drvHostBaseQueryRegionPropertiesForLba(PPDMIMEDIA pInterface, uint64_t u64LbaStart, 398 uint 64_t *pcBlocks, uint64_t *pcbBlock,399 PVDREGIONDATAFORM penmDataForm)398 uint32_t *puRegion, uint64_t *pcBlocks, 399 uint64_t *pcbBlock, PVDREGIONDATAFORM penmDataForm) 400 400 { 401 401 LogFlowFunc(("\n")); … … 416 416 rc = VERR_NOT_FOUND; 417 417 418 if (puRegion) 419 *puRegion = 0; 418 420 if (pcBlocks) 419 421 *pcBlocks = cbMedia / cbBlock;
Note:
See TracChangeset
for help on using the changeset viewer.