Changeset 37607 in vbox
- Timestamp:
- Jun 23, 2011 10:42:42 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Runtime/r3/win/fileaio-win.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/fileaio-win.cpp
r37596 r37607 189 189 190 190 pReqInt->enmTransferDirection = enmTransferDirection; 191 pReqInt->hFile = RTFileToNative(hFile);191 pReqInt->hFile = (HANDLE)RTFileToNative(hFile); 192 192 pReqInt->Overlapped.Offset = (DWORD)(off & 0xffffffff); 193 193 pReqInt->Overlapped.OffsetHigh = (DWORD)(off >> 32); … … 318 318 RTFILEAIOCTX_VALID_RETURN(pCtxInt); 319 319 320 HANDLE hTemp = CreateIoCompletionPort( RTFileToNative(hFile), pCtxInt->hIoCompletionPort, 0, 1);320 HANDLE hTemp = CreateIoCompletionPort((HANDLE)RTFileToNative(hFile), pCtxInt->hIoCompletionPort, 0, 1); 321 321 if (hTemp != pCtxInt->hIoCompletionPort) 322 322 rc = RTErrConvertFromWin32(GetLastError());
Note:
See TracChangeset
for help on using the changeset viewer.

