Changeset 841 for trunk/dll/srchpath.c


Ignore:
Timestamp:
Sep 23, 2007, 6:27:51 PM (18 years ago)
Author:
Gregg Young
Message:

This implements large file support; The wrappers to allow WARP3 compatibility are not done so this will not run on Warp3or Warp 4 pre fixpack 12(?)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/srchpath.c

    r809 r841  
    1818#define INCL_DOS
    1919#define INCL_DOSERRORS
     20#define INCL_LONGLONG
    2021
    2122#include <os2.h>
     
    104105      || strchr(filename, ':')) {
    105106
    106     FILESTATUS3 fsa;
     107    FILESTATUS3L fsa;
    107108
    108     if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, (ULONG) sizeof(fsa)))
     109    if (!DosQueryPathInfo(filename, FIL_STANDARDL, &fsa, (ULONG) sizeof(fsa)))
    109110      return filename;
    110111    *fbuf = 0;
Note: See TracChangeset for help on using the changeset viewer.