Changeset 74219 in vbox for trunk/include/VBox
- Timestamp:
- Sep 12, 2018 11:40:50 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/ExtPack/ExtPack.h
r73828 r74219 259 259 260 260 /** 261 * Waits until the other task is completed (including all sub-operations) 262 * and forward all changes from the other progress to this progress. This 263 * means sub-operation number, description, percent and so on. 264 * 265 * The caller is responsible for having at least the same count of 266 * sub-operations in this progress object as there are in the other 267 * progress object. 268 * 269 * If the other progress object supports cancel and this object gets any 270 * cancel request (when here enabled as well), it will be forwarded to 271 * the other progress object. 272 * 273 * Error information is automatically preserved (by transferring it to 274 * the current thread's error information). If the caller wants to set it 275 * as the completion state of this progress it needs to be done separately. 276 * 277 * @returns COM status code. 278 * @param pHlp Pointer to this helper structure. 279 * @param pProgress Pointer to the IProgress object reference returned 280 * by pfnCreateProgress. 281 * @param pProgressOther Pointer to an IProgress object reference, the one 282 * to be waited for. 283 */ 284 DECLR3CALLBACKMEMBER(uint32_t, pfnWaitOtherProgress,(PCVBOXEXTPACKHLP pHlp, VBOXEXTPACK_IF_CS(IProgress) *pProgress, 285 VBOXEXTPACK_IF_CS(IProgress) *pProgressOther)); 286 287 /** 261 288 * Marks the whole task as complete and sets the result code. 262 289 *
Note:
See TracChangeset
for help on using the changeset viewer.