Changeset 21525 for trunk/src/kernel32/oslibdos.cpp
- Timestamp:
- Dec 14, 2010, 6:56:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibdos.cpp
r21437 r21525 34 34 #include <win32api.h> 35 35 #include <winconst.h> 36 #include <win \winioctl.h>36 #include <win/winioctl.h> 37 37 #include <misc.h> 38 38 #include <odincrt.h> … … 1397 1397 APIRET rc; 1398 1398 1399 // NOTE: On HPFS386, doing FIL_QUERYEASIZE on a write-only file will 1400 // fail with ERROR_ACCESS_DENIED. Since we don't actually care about EAs 1401 // here, we will simply use FIL_STANDARD instead. 1402 1399 1403 if(f64BitIO) 1400 1404 { 1401 FILESTATUS 4L statusL = { 0 };1402 1403 rc = DosQueryFileInfo(hFile, FIL_ QUERYEASIZEL,1405 FILESTATUS3L statusL = { 0 }; 1406 1407 rc = DosQueryFileInfo(hFile, FIL_STANDARDL, 1404 1408 &statusL, sizeof(statusL)); 1405 1409 if(rc == NO_ERROR) … … 1439 1443 else 1440 1444 { 1441 FILESTATUS 4status = { 0 };1442 1443 rc = DosQueryFileInfo(hFile, FIL_ QUERYEASIZE, &status,1445 FILESTATUS3 status = { 0 }; 1446 1447 rc = DosQueryFileInfo(hFile, FIL_STANDARD, &status, 1444 1448 sizeof(status)); 1445 1449 if(rc == NO_ERROR)
Note:
See TracChangeset
for help on using the changeset viewer.