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

    r1438 r1439  
    8181  06 Jun 09 GKY Add option to show file system type or drive label in tree
    8282  28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code.
     83  12 Jul 09 GKY Add xDosQueryAppType and xDoxAlloc... to allow FM/2 to load in high memory
    8384
    8485***********************************************************************/
     
    11491150    if (*FullPath)
    11501151      fLVMGui = TRUE;
    1151     if (!DosQueryAppType(PCSZ_DFSOS2EXE, &ulAppType))
     1152    if (!xDosQueryAppType(PCSZ_DFSOS2EXE, &ulAppType))
    11521153      fDFSee = TRUE;
    1153     if (!DosQueryAppType(PCSZ_MINILVMEXE, &ulAppType))
     1154    if (!xDosQueryAppType(PCSZ_MINILVMEXE, &ulAppType))
    11541155      fMiniLVM = TRUE;
    1155     if (!DosQueryAppType(PCSZ_FDISKPMEXE, &ulAppType))
     1156    if (!xDosQueryAppType(PCSZ_FDISKPMEXE, &ulAppType))
    11561157      fFDisk = TRUE;
    1157     if (!DosQueryAppType(PCSZ_LVMEXE, &ulAppType))
     1158    if (!xDosQueryAppType(PCSZ_LVMEXE, &ulAppType))
    11581159      fLVM = TRUE;
    11591160
    11601161    // Check to see if we are running protect only
    1161     if (!DosQueryAppType(GetCmdSpec(TRUE), &ulAppType)) {
     1162    if (!xDosQueryAppType(GetCmdSpec(TRUE), &ulAppType)) {
    11621163      ret = runemf2(SEPARATE | WINDOWED | BACKGROUND | MINIMIZED,
    11631164                    (HWND) 0, pszSrcFile, __LINE__, NULL, NULL,
Note: See TracChangeset for help on using the changeset viewer.