Changeset 1438 for trunk/dll/eas.c


Ignore:
Timestamp:
Jun 28, 2009, 10:47:00 PM (16 years ago)
Author:
Gregg Young
Message:

Improved drivebar changes; Added AddBackslashToPath() to remove repeatative code. replaced "
" with PCSZ variable; ANY_OBJ added the DosAlloc... (experimental)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/eas.c

    r1402 r1438  
    198198
    199199            ealen = sizeof(FEA2LIST) + strlen(s) + 64;
    200             rc = DosAllocMem((PPVOID) & pfealist, ealen + 1,
    201                              OBJ_TILE | PAG_COMMIT | PAG_READ | PAG_WRITE);
     200            rc = xDosAllocMem((PPVOID) & pfealist, ealen + 1,
     201                              OBJ_TILE | PAG_COMMIT | PAG_READ | PAG_WRITE);
    202202            if (rc)
    203203              Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     
    10641064  }
    10651065
    1066   rc = DosAllocMem((PPVOID) & pfealist, ealen,
    1067                    OBJ_TILE | PAG_COMMIT | PAG_READ | PAG_WRITE);
     1066  rc = xDosAllocMem((PPVOID) & pfealist, ealen,
     1067                    OBJ_TILE | PAG_COMMIT | PAG_READ | PAG_WRITE);
    10681068  if (rc)
    10691069    Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
Note: See TracChangeset for help on using the changeset viewer.