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

    r793 r841  
    1616#define INCL_DOS
    1717#define INCL_WIN
     18#define INCL_LONGLONG
    1819
    1920#include <os2.h>
     
    7677      if (mv) {
    7778
    78         FILESTATUS3 fs1, fs2;
     79        FILESTATUS3L fs1, fs2;
    7980        CHAR s[CCHMAXPATH * 2], *p, chkname[CCHMAXPATH];
    8081        INT sourceexists = 0, targetexists = 0,
     
    9192        if (!MakeFullName(mv->source))
    9293          WinSetDlgItemText(hwnd, REN_SOURCE, mv->source);
    93         if (!DosQueryPathInfo(mv->source, FIL_STANDARD, &fs1, sizeof(fs1))) {
     94        if (!DosQueryPathInfo(mv->source, FIL_STANDARDL, &fs1, sizeof(fs1))) {
    9495          sprintf(s,
    9596                  " %s%lu %ss %04u/%02u/%02u %02u:%02u:%02u",
     
    118119            strcpy(chkname, mv->target);
    119120        }
    120         if (!DosQueryPathInfo(chkname, FIL_STANDARD, &fs2, sizeof(fs2))) {
     121        if (!DosQueryPathInfo(chkname, FIL_STANDARDL, &fs2, sizeof(fs2))) {
    121122          sprintf(s,
    122123                  " %s%lu %ss %04u/%02u/%02u %02u:%02u:%02u",
Note: See TracChangeset for help on using the changeset viewer.