Changeset 847 for trunk/dll/eas.c


Ignore:
Timestamp:
Sep 29, 2007, 8:45:16 PM (18 years ago)
Author:
Gregg Young
Message:

Removed large file APIs from code where hey are not needed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/eas.c

    r844 r847  
    11861186
    11871187  HOLDFEA *head = NULL, *info, *last = NULL;
    1188   FILESTATUS4L fsa4;
     1188  FILESTATUS4 fsa4;
    11891189  HFILE handle;
    11901190  ULONG action;
     
    12011201    if (ishandle)
    12021202      handle = *(HFILE *) filename;
    1203     if (!DosQueryFileInfo(handle, FIL_QUERYEASIZEL, (PVOID)&fsa4,
     1203    if (!DosQueryFileInfo(handle, FIL_QUERYEASIZE, (PVOID)&fsa4,
    12041204                          (ULONG) sizeof(fsa4)) &&
    12051205        fsa4.cbList > 4)
     
    12911291    //03 AUG 07 GKY This isn't an error it is for processing Readonly files
    12921292    /* try it without opening it */
    1293     if (!DosQueryPathInfo(filename, FIL_QUERYEASIZEL, (PVOID) & fsa4,
     1293    if (!DosQueryPathInfo(filename, FIL_QUERYEASIZE, (PVOID) & fsa4,
    12941294                          (ULONG) sizeof(fsa4)) &&
    12951295        fsa4.cbList > 4)
Note: See TracChangeset for help on using the changeset viewer.