Changeset 57416 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 18, 2015 11:19:28 AM (9 years ago)
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r56733 r57416 85 85 tstRTLockValidator \ 86 86 tstLog \ 87 tstMemAutoPtr \88 87 tstRTMemEf \ 89 88 tstRTMemCache \ … … 445 444 tstLog_SOURCES = tstLog.cpp 446 445 447 tstMemAutoPtr_TEMPLATE = VBOXR3TSTEXE448 tstMemAutoPtr_SOURCES = tstMemAutoPtr.cpp449 450 446 tstRTMemEf_TEMPLATE = VBOXR3TSTEXE 451 447 tstRTMemEf_SOURCES = tstRTMemEf.cpp -
trunk/src/VBox/Runtime/testcase/tstRTDvm.cpp
r57358 r57416 59 59 60 60 61 static intdvmDiskRead(void *pvUser, uint64_t off, void *pvBuf, size_t cbRead)61 static DECLCALLBACK(int) dvmDiskRead(void *pvUser, uint64_t off, void *pvBuf, size_t cbRead) 62 62 { 63 63 PTSTRTDVMDISK pDisk = (PTSTRTDVMDISK)pvUser; … … 68 68 } 69 69 70 static intdvmDiskWrite(void *pvUser, uint64_t off, const void *pvBuf, size_t cbWrite)70 static DECLCALLBACK(int) dvmDiskWrite(void *pvUser, uint64_t off, const void *pvBuf, size_t cbWrite) 71 71 { 72 72 PTSTRTDVMDISK pDisk = (PTSTRTDVMDISK)pvUser;
Note:
See TracChangeset
for help on using the changeset viewer.