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

    r841 r847  
    210210{
    211211  FILEDLG fdlg;
    212   FILESTATUS3L fsa;
     212  FILESTATUS3 fsa;
    213213  CHAR drive[3], *pdrive = drive, *p;
    214214  APIRET rc;
     
    278278    return FALSE;
    279279  MakeFullName(filename);
    280   if (!DosQueryPathInfo(filename, FIL_STANDARDL, &fsa, sizeof(fsa))) {
     280  if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) {
    281281    if (fsa.attrFile & FILE_DIRECTORY) {
    282282      /* device or directory */
     
    316316{
    317317  FILEDLG fdlg;
    318   FILESTATUS3L fsa;
     318  FILESTATUS3 fsa;
    319319  CHAR drive[3], *pdrive = drive, *p;
    320320  static CHAR lastfilename[CCHMAXPATH] = "";
     
    369369    return FALSE;
    370370  MakeFullName(filename);
    371   if (!DosQueryPathInfo(filename, FIL_STANDARDL, &fsa, sizeof(fsa))) {
     371  if (!DosQueryPathInfo(filename, FIL_STANDARD, &fsa, sizeof(fsa))) {
    372372    if (fsa.attrFile & FILE_DIRECTORY) {        /* device or directory */
    373373      saymsg(MB_CANCEL | MB_ICONEXCLAMATION,
     
    375375      return FALSE;
    376376    }
    377     else if (overwrite && fsa.cbFile != 0L) {
     377    else if (overwrite && fsa.cbFile != 0) {
    378378      if (saymsg(MB_YESNO,
    379379                 hwnd,
Note: See TracChangeset for help on using the changeset viewer.