Changeset 844 for trunk/dll/mle.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/mle.c

    r843 r844  
    447447  *titletext = 0;
    448448  WinQueryWindowText(grandpa, 512, titletext);
    449   rc = DosOpenL(filename, &handle, &action, 0, 0,
    450                 OPEN_ACTION_FAIL_IF_NEW | OPEN_ACTION_OPEN_IF_EXISTS,
    451                 OPEN_FLAGS_FAIL_ON_ERROR | OPEN_FLAGS_NOINHERIT |
    452                 OPEN_FLAGS_SEQUENTIAL | OPEN_SHARE_DENYNONE |
    453                 OPEN_ACCESS_READONLY, 0);
     449  rc = DosOpen(filename, &handle, &action, 0, 0,
     450               OPEN_ACTION_FAIL_IF_NEW | OPEN_ACTION_OPEN_IF_EXISTS,
     451               OPEN_FLAGS_FAIL_ON_ERROR | OPEN_FLAGS_NOINHERIT |
     452               OPEN_FLAGS_SEQUENTIAL | OPEN_SHARE_DENYNONE |
     453               OPEN_ACCESS_READONLY, 0);
    454454  if (rc) {
    455455    ret = FALSE;
Note: See TracChangeset for help on using the changeset viewer.