Changeset 1585
- Timestamp:
- Nov 1, 2004, 2:59:07 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/sys/b_ioFileSizeSet.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1584 r1585 67 67 } info; 68 68 int rc; 69 off_t cbCur;70 69 #if OFF_MAX > LONG_MAX 71 70 if (__libc_gpfnDosOpenL) 72 71 { 73 72 rc = DosQueryFileInfo(hFile, FIL_STANDARDL, &info, sizeof(info.fsts3L)); 74 cbCur= info.fsts3L.cbFile;73 *pcb = info.fsts3L.cbFile; 75 74 } 76 75 else … … 78 77 { 79 78 rc = DosQueryFileInfo(hFile, FIL_STANDARD, &info, sizeof(info.fsts3)); 80 cbCur= info.fsts3.cbFile;79 *pcb = info.fsts3.cbFile; 81 80 } 82 81 return rc; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.