Changeset 844 for trunk/dll/common.c


Ignore:
Timestamp:
Sep 24, 2007, 1:06:44 AM (18 years ago)
Author:
Gregg Young
Message:

Reversion of some large file funtions where file sizes is not used

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/common.c

    r841 r844  
    279279
    280280      dv[2] = 0;
    281       rc = DosOpenL(dv,
    282                     &hfile,
    283                     &dlen,
    284                     0,
    285                     0,
    286                     OPEN_ACTION_OPEN_IF_EXISTS |
    287                     OPEN_ACTION_CREATE_IF_NEW,
    288                     OPEN_FLAGS_DASD |
    289                     OPEN_FLAGS_FAIL_ON_ERROR | OPEN_SHARE_DENYNONE, NULL);
     281      rc = DosOpen(dv,
     282                   &hfile,
     283                   &dlen,
     284                   0,
     285                   0,
     286                   OPEN_ACTION_OPEN_IF_EXISTS |
     287                   OPEN_ACTION_CREATE_IF_NEW,
     288                   OPEN_FLAGS_DASD |
     289                   OPEN_FLAGS_FAIL_ON_ERROR | OPEN_SHARE_DENYNONE, NULL);
    290290      if (rc)
    291         Dos_Error(MB_CANCEL, rc, hwnd, pszSrcFile, __LINE__, "DosOpenL");
     291        Dos_Error(MB_CANCEL, rc, hwnd, pszSrcFile, __LINE__, "DosOpen");
    292292      else {
    293293        dlen = 0;
Note: See TracChangeset for help on using the changeset viewer.