Changeset 69322 in vbox for trunk/src/VBox
- Timestamp:
- Oct 25, 2017 7:06:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MediumImpl.cpp
r69321 r69322 242 242 /* Set up a per-operation progress interface, can be used freely (for 243 243 * binary operations you can use it either on the source or target). */ 244 mVDIfProgress = VDINTERFACEPROGRESS_INITALIZER(aProgress->i_vdProgressCallback);244 mVDIfProgress.pfnProgress = aProgress->i_vdProgressCallback; 245 245 int vrc = VDInterfaceAdd(&mVDIfProgress.Core, 246 "Medium::Task::vdInterfaceProgress",247 VDINTERFACETYPE_PROGRESS,248 mProgress,249 sizeof(mVDIfProgress),250 &mVDOperationIfaces);246 "Medium::Task::vdInterfaceProgress", 247 VDINTERFACETYPE_PROGRESS, 248 mProgress, 249 sizeof(mVDIfProgress), 250 &mVDOperationIfaces); 251 251 AssertRC(vrc); 252 252 if (RT_FAILURE(vrc))
Note:
See TracChangeset
for help on using the changeset viewer.