Changeset 1439 for trunk/dll/init.c
- Timestamp:
- Jul 12, 2009, 11:57:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1438 r1439 81 81 06 Jun 09 GKY Add option to show file system type or drive label in tree 82 82 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 83 84 84 85 ***********************************************************************/ … … 1149 1150 if (*FullPath) 1150 1151 fLVMGui = TRUE; 1151 if (! DosQueryAppType(PCSZ_DFSOS2EXE, &ulAppType))1152 if (!xDosQueryAppType(PCSZ_DFSOS2EXE, &ulAppType)) 1152 1153 fDFSee = TRUE; 1153 if (! DosQueryAppType(PCSZ_MINILVMEXE, &ulAppType))1154 if (!xDosQueryAppType(PCSZ_MINILVMEXE, &ulAppType)) 1154 1155 fMiniLVM = TRUE; 1155 if (! DosQueryAppType(PCSZ_FDISKPMEXE, &ulAppType))1156 if (!xDosQueryAppType(PCSZ_FDISKPMEXE, &ulAppType)) 1156 1157 fFDisk = TRUE; 1157 if (! DosQueryAppType(PCSZ_LVMEXE, &ulAppType))1158 if (!xDosQueryAppType(PCSZ_LVMEXE, &ulAppType)) 1158 1159 fLVM = TRUE; 1159 1160 1160 1161 // Check to see if we are running protect only 1161 if (! DosQueryAppType(GetCmdSpec(TRUE), &ulAppType)) {1162 if (!xDosQueryAppType(GetCmdSpec(TRUE), &ulAppType)) { 1162 1163 ret = runemf2(SEPARATE | WINDOWED | BACKGROUND | MINIMIZED, 1163 1164 (HWND) 0, pszSrcFile, __LINE__, NULL, NULL,
Note:
See TracChangeset
for help on using the changeset viewer.