Changeset 1439 for trunk/dll/killproc.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/killproc.c

    r1438 r1439  
    2121  10 Dec 08 SHL Integrate exception handler support
    2222  08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used)
     23  12 Jul 09 GKY Add xDosQueryAppType and xDoxAlloc... to allow FM/2 to load in high memory
    2324
    2425***********************************************************************/
     
    117118  WinSendDlgItemMsg(hwnd, KILL_LISTBOX, LM_DELETEALL, MPVOID, MPVOID);
    118119  rc = xDosAllocMem((PVOID) & pbh, USHRT_MAX + 4096,
    119                     PAG_COMMIT | OBJ_TILE | PAG_READ | PAG_WRITE);
     120                    PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__);
    120121  if (rc)
    121122    Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     
    186187  WinSendDlgItemMsg(hwnd, KILL_LISTBOX, LM_DELETEALL, MPVOID, MPVOID);
    187188  rc = xDosAllocMem((PVOID) & pbh, USHRT_MAX + 4096,
    188                     PAG_COMMIT | OBJ_TILE | PAG_READ | PAG_WRITE);
     189                    PAG_COMMIT | PAG_READ | PAG_WRITE, pszSrcFile, __LINE__);
    189190  if (rc)
    190191    Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
Note: See TracChangeset for help on using the changeset viewer.