Changeset 841 for trunk/undel.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/undel.c

    r551 r841  
    11#define INCL_DOS
    22#define INCL_WIN
     3#define INCL_LONGLONG
    34
    45#include <os2.h>
     
    1617  HAB hab;
    1718  HMQ hmq;
    18   FILESTATUS3 fs;
     19  FILESTATUS3L fs;
    1920  static CHAR fullname[CCHMAXPATH];
    2021  CHAR *thisarg = NULL;
     
    3334  }
    3435  DosError(FERR_DISABLEHARDERR);
    35   if (thisarg && !DosQueryPathInfo(thisarg, FIL_STANDARD, &fs, sizeof(fs))) {
     36  if (thisarg && !DosQueryPathInfo(thisarg, FIL_STANDARDL, &fs, sizeof(fs))) {
    3637    if (DosQueryPathInfo(thisarg,
    3738                         FIL_QUERYFULLNAME, fullname, sizeof(fullname)))
Note: See TracChangeset for help on using the changeset viewer.