Changeset 1439 for trunk/dll/eas.c


Ignore:
Timestamp:
Jul 12, 2009, 11:57:04 PM (16 years ago)
Author:
Gregg Young
Message:

Changes to allow high mem loading of dll; Refactor .LONGNAME and .SUBJECT EA fetch to FetchCommonEAs. Add szFSType to FillInRecordFromFSA use to bypass EA scan and size formatting for tree container; Fix labels/FS type to work on scan on NOPRESCAN Drives; Fixed dbl directory names on restore of dir cnrs; (Tickets 47, 339, 363, 368, 369, 370)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/eas.c

    r1438 r1439  
    2323  29 Feb 08 GKY Use xfree where appropriate
    2424  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
     25  12 Jul 09 GKY Add xDosQueryAppType and xDoxAlloc... to allow FM/2 to load in high memory
    2526
    2627***********************************************************************/
     
    199200            ealen = sizeof(FEA2LIST) + strlen(s) + 64;
    200201            rc = xDosAllocMem((PPVOID) & pfealist, ealen + 1,
    201                               OBJ_TILE | PAG_COMMIT | PAG_READ | PAG_WRITE);
     202                              PAG_COMMIT | PAG_READ | PAG_WRITE,
     203                              pszSrcFile, __LINE__);
    202204            if (rc)
    203205              Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     
    10651067
    10661068  rc = xDosAllocMem((PPVOID) & pfealist, ealen,
    1067                     OBJ_TILE | PAG_COMMIT | PAG_READ | PAG_WRITE);
     1069                    PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__);
    10681070  if (rc)
    10691071    Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
Note: See TracChangeset for help on using the changeset viewer.