Changeset 27232 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 9, 2010 9:05:57 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58614
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MediumImpl.cpp
r27200 r27232 4785 4785 4786 4786 /** 4787 * PFNVMPROGRESS callback handler for Task operations. 4788 * 4787 * PFNVDPROGRESS callback handler for Task operations. 4788 * 4789 * @param pvUser Pointer to the Progress instance. 4789 4790 * @param uPercent Completetion precentage (0-100). 4790 * @param pvUser Pointer to the Progress instance.4791 4791 */ 4792 4792 /*static*/ 4793 DECLCALLBACK(int) Medium::vdProgressCall(PVM /* pVM */, unsigned uPercent, 4794 void *pvUser) 4793 DECLCALLBACK(int) Medium::vdProgressCall(void *pvUser, unsigned uPercent) 4795 4794 { 4796 4795 Progress *that = static_cast<Progress *>(pvUser); -
trunk/src/VBox/Main/include/MediumImpl.h
r26984 r27232 27 27 28 28 class Progress; 29 struct VM;30 29 31 30 namespace settings … … 295 294 const char *pszFormat, va_list va); 296 295 297 static DECLCALLBACK(int) vdProgressCall(VM* /* pVM */, unsigned uPercent, 298 void *pvUser); 296 static DECLCALLBACK(int) vdProgressCall(void *pvUser, unsigned uPercent); 299 297 300 298 static DECLCALLBACK(bool) vdConfigAreKeysValid(void *pvUser,
Note:
See TracChangeset
for help on using the changeset viewer.