Changeset 85121 in vbox for trunk/src/VBox/Storage/testcase
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139061
- Location:
- trunk/src/VBox/Storage/testcase
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/testcase/VDIoBackend.h
r82968 r85121 44 44 * @param rcReq Completion code for the request. 45 45 */ 46 typedef DECLCALLBACK (int) FNVDIOCOMPLETE(void *pvUser, int rcReq);46 typedef DECLCALLBACKTYPE(int, FNVDIOCOMPLETE,(void *pvUser, int rcReq)); 47 47 /** Pointer to a completion handler. */ 48 48 typedef FNVDIOCOMPLETE *PFNVDIOCOMPLETE; -
trunk/src/VBox/Storage/testcase/VDIoBackendMem.h
r82968 r85121 39 39 * @param rcReq Completion code for the request. 40 40 */ 41 typedef DECLCALLBACK (int) FNVDIOCOMPLETE(void *pvUser, int rcReq);41 typedef DECLCALLBACKTYPE(int, FNVDIOCOMPLETE,(void *pvUser, int rcReq)); 42 42 /** Pointer to a completion handler. */ 43 43 typedef FNVDIOCOMPLETE *PFNVDIOCOMPLETE; -
trunk/src/VBox/Storage/testcase/VDScript.h
r82968 r85121 83 83 84 84 /** Script callback. */ 85 typedef DECLCALLBACK (int) FNVDSCRIPTCALLBACK(PVDSCRIPTARG paScriptArgs, void *pvUser);85 typedef DECLCALLBACKTYPE(int, FNVDSCRIPTCALLBACK,(PVDSCRIPTARG paScriptArgs, void *pvUser)); 86 86 /** Pointer to a script callback. */ 87 87 typedef FNVDSCRIPTCALLBACK *PFNVDSCRIPTCALLBACK; … … 127 127 * @param cbRead How much to read. 128 128 */ 129 typedef DECLCALLBACK (int) FNVDSCRIPTASREAD(void *pvUser, VDSCRIPTARG Address, void *pvBuf, size_t cbRead);129 typedef DECLCALLBACKTYPE(int, FNVDSCRIPTASREAD,(void *pvUser, VDSCRIPTARG Address, void *pvBuf, size_t cbRead)); 130 130 /** Pointer to a read callback. */ 131 131 typedef FNVDSCRIPTASREAD *PFNVDSCRIPTASREAD; … … 141 141 * @param cbWrite How much to write. 142 142 */ 143 typedef DECLCALLBACK (int) FNVDSCRIPTASWRITE(void *pvUser, VDSCRIPTARG Address, const void *pvBuf, size_t cbWrite);143 typedef DECLCALLBACKTYPE(int, FNVDSCRIPTASWRITE,(void *pvUser, VDSCRIPTARG Address, const void *pvBuf, size_t cbWrite)); 144 144 /** Pointer to a write callback. */ 145 145 typedef FNVDSCRIPTASWRITE *PFNVDSCRIPTASWRITE; -
trunk/src/VBox/Storage/testcase/tstVD.cpp
r82968 r85121 362 362 } 363 363 364 static int compareSegments(const void *left, const void *right) 364 static int compareSegments(const void *left, const void *right) RT_NOTHROW_DEF 365 365 { 366 366 /* Note that no duplicates are allowed in the array being sorted. */
Note:
See TracChangeset
for help on using the changeset viewer.