Changeset 18452 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Mar 28, 2009 4:05:10 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45273
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r18157 r18452 333 333 #if defined(RT_OS_WINDOWS) 334 334 DWORD cbReturned = 0; 335 if (!DeviceIoControl(g_hFile, iFunction, pvData, cbData, pvData,cbData, &cbReturned, NULL))335 if (!DeviceIoControl(g_hFile, iFunction, pvData, (DWORD)cbData, pvData, (DWORD)cbData, &cbReturned, NULL)) 336 336 { 337 337 /** @todo The passing of error codes needs to be tested and fixed (as does *all* the other hosts except for
Note:
See TracChangeset
for help on using the changeset viewer.