Changeset 847 for trunk/dll/seeall.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/seeall.c

    r846 r847  
    465465          x = 0;
    466466          while (list[x]) {
    467             FILESTATUS3L fsa;
     467            FILESTATUS3 fsa;
    468468            // BOOL spaces;
    469469            // if (needs_quoting(list[x])) {
     
    476476            memset(&fsa, 0, sizeof(fsa));
    477477            DosError(FERR_DISABLEHARDERR);
    478             DosQueryPathInfo(list[x], FIL_STANDARDL, &fsa, sizeof(fsa));
     478            DosQueryPathInfo(list[x], FIL_STANDARD, &fsa, sizeof(fsa));
    479479            if (fsa.attrFile & FILE_DIRECTORY) {
    480480              BldQuotedFullPathName(szBuffer + strlen(szBuffer),
     
    888888          CHECKLIST cl;
    889889          INT isdir = 0, sysdir = 0, ro = 0, hs = 0;
    890           FILESTATUS3L fsa;
     890          FILESTATUS3 fsa;
    891891          CHAR prompt[CCHMAXPATH * 3];
    892892          APIRET error;
     
    901901            }
    902902            DosError(FERR_DISABLEHARDERR);
    903             if (DosQueryPathInfo(list[x], FIL_STANDARDL, &fsa, sizeof(fsa))) {
     903            if (DosQueryPathInfo(list[x], FIL_STANDARD, &fsa, sizeof(fsa))) {
    904904              list = RemoveFromList(list, list[x]);
    905905              if (!list)
     
    983983            fsa.attrFile = 0;
    984984            DosError(FERR_DISABLEHARDERR);
    985             DosQueryPathInfo(list[x], FIL_STANDARDL, &fsa, sizeof(fsa));
     985            DosQueryPathInfo(list[x], FIL_STANDARD, &fsa, sizeof(fsa));
    986986            if (fsa.attrFile & FILE_DIRECTORY) {
    987987              sprintf(prompt, GetPString(IDS_DELETINGTEXT), list[x]);
Note: See TracChangeset for help on using the changeset viewer.