Changeset 22024 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Sep 27, 2012, 4:08:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r21916 r22024 2372 2372 { 2373 2373 int iIndex; /* index into the handle table */ 2374 BOOL dwResult;/* result from the device handler's API */2374 BOOL bResult; /* result from the device handler's API */ 2375 2375 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 2376 2376 … … 2388 2388 return ERROR_SYS_INTERNAL; 2389 2389 2390 dwResult = pHMHandle->pDeviceHandler->UnlockFileEx(&pHMHandle->hmHandleData,2391 2392 2393 2394 2395 2396 return ( dwResult);/* deliver return code */2390 bResult = pHMHandle->pDeviceHandler->UnlockFileEx(&pHMHandle->hmHandleData, 2391 dwReserved, 2392 nNumberOfBytesToLockLow, 2393 nNumberOfBytesToLockHigh, 2394 lpOverlapped); 2395 2396 return (bResult); /* deliver return code */ 2397 2397 } 2398 2398
Note:
See TracChangeset
for help on using the changeset viewer.