Changeset 63812 in vbox for trunk/include/VBox
- Timestamp:
- Sep 13, 2016 11:33:55 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd-ifs-internal.h
r62476 r63812 227 227 * @param fFlags Flags for controlling the allocation strategy. 228 228 * Reserved for future use, MBZ. 229 * @param pIfProgress Progress interface (optional). 230 * @param uPercentStart Progress starting point. 231 * @param uPercentSpan Length of operation in percent. 229 232 */ 230 233 DECLR3CALLBACKMEMBER(int, pfnSetAllocationSize, (void *pvUser, PVDIOSTORAGE pStorage, 231 234 uint64_t cbSize, uint32_t fFlags, 232 PFNVDPROGRESS pfnProgress, 233 void *pvProgressUser, unsigned uPercentStart, 234 unsigned uPercentSpan)); 235 PVDINTERFACEPROGRESS pIfProgress, 236 unsigned uPercentStart, unsigned uPercentSpan)); 235 237 236 238 /** … … 512 514 DECLINLINE(int) vdIfIoIntFileSetAllocationSize(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage, 513 515 uint64_t cbSize, uint32_t fFlags, 514 PFNVDPROGRESS pfnProgress, 515 void *pvProgressUser, unsigned uPercentStart, 516 unsigned uPercentSpan) 516 PVDINTERFACEPROGRESS pIfProgress, 517 unsigned uPercentStart, unsigned uPercentSpan) 517 518 { 518 519 return pIfIoInt->pfnSetAllocationSize(pIfIoInt->Core.pvUser, pStorage, cbSize, fFlags, 519 p fnProgress, pvProgressUser, uPercentStart, uPercentSpan);520 pIfProgress, uPercentStart, uPercentSpan); 520 521 } 521 522
Note:
See TracChangeset
for help on using the changeset viewer.