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

    r841 r847  
    9494
    9595              CHAR mask[CCHMAXPATH], *enddir, text[CCHMAXPATH * 2];
    96               FILEFINDBUF3L ffb;
     96              FILEFINDBUF3 ffb;
    9797              HDIR hdir;
    9898              ULONG nm;
     
    109109              nm = 1;
    110110              DosError(FERR_DISABLEHARDERR);
    111               if (!xDosFindFirst(mask, &hdir, FILE_NORMAL | FILE_ARCHIVED,
    112                                  &ffb, sizeof(ffb), &nm, FIL_STANDARDL)) {
     111              if (!DosFindFirst(mask, &hdir, FILE_NORMAL | FILE_ARCHIVED,
     112                                &ffb, sizeof(ffb), &nm, FIL_STANDARD)) {
    113113                do {
    114114                  priority_normal();
     
    149149                Continue:
    150150                  nm = 1;
    151                 } while (!xDosFindNext(hdir, &ffb, sizeof(ffb), &nm));
     151                } while (!DosFindNext(hdir, &ffb, sizeof(ffb), &nm));
    152152                DosFindClose(hdir);
    153153                priority_normal();
Note: See TracChangeset for help on using the changeset viewer.