Changeset 843 for trunk/dll/mle.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/mle.c

    r841 r843  
    775775   */
    776776
    777   FILESTATUS3L fsa;
     777  FILESTATUS3 fsa;
    778778  BOOL ret;
    779779
    780   if (!DosQueryPathInfo(filename, FIL_STANDARDL, &fsa, (ULONG) sizeof(fsa)) &&
    781       !(fsa.attrFile & FILE_DIRECTORY)) {
     780  if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa)) &&
     781      ~fsa.attrFile & FILE_DIRECTORY) {
    782782    MLEclearall(h);
    783783    ret = MLEinsertfile(h, filename);
Note: See TracChangeset for help on using the changeset viewer.