Changeset 63782 in vbox for trunk/include/VBox
- Timestamp:
- Sep 9, 2016 9:46:16 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd-ifs.h
r62924 r63782 744 744 } 745 745 746 /** 747 * Signal new progress information to the frontend. 748 * 749 * @returns VBox status code. 750 * @param pIfProgress The progress interface. 751 * @param uPercent Completion percentage. 752 */ 753 DECLINLINE(int) vdIfProgress(PVDINTERFACEPROGRESS pIfProgress, unsigned uPercentage) 754 { 755 if (pIfProgress) 756 return pIfProgress->pfnProgress(pIfProgress->Core.pvUser, uPercentage); 757 return VINF_SUCCESS; 758 } 746 759 747 760 /**
Note:
See TracChangeset
for help on using the changeset viewer.