Changeset 843 for trunk/dll/dirs.c


Ignore:
Timestamp:
Sep 24, 2007, 12:46:47 AM (18 years ago)
Author:
Steven Levine
Message:

Revert to standard APIs where large file support not required by ticket #41

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/dirs.c

    r841 r843  
    6969
    7070  APIRET ret;
    71   FILESTATUS3L fsa;
     71  FILESTATUS3 fsa;
    7272  CHAR path[CCHMAXPATH + 1], *p;
    7373
    7474  strcpy(path, s);
    7575  while (*path) {
    76     ret = DosQueryPathInfo(path, FIL_STANDARDL, &fsa,
    77                            (ULONG) sizeof(FILESTATUS3L));
     76    ret = DosQueryPathInfo(path, FIL_STANDARD, &fsa, sizeof(fsa));
    7877    if (ret || !(fsa.attrFile & FILE_DIRECTORY)) {
    7978      p = strrchr(path, '\\');
Note: See TracChangeset for help on using the changeset viewer.