Changeset 15395
- Timestamp:
- Dec 17, 2000, 11:45:52 PM (24 years ago)
- Location:
- tags/trunk/src/win32k
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/src/win32k/dev32/d32init.c ¶
r15357 r15395 1 /* $Id: d32init.c,v 1.2 7 2000-12-12 14:50:09bird Exp $1 /* $Id: d32init.c,v 1.28 2000-12-17 22:45:50 bird Exp $ 2 2 * 3 3 * d32init.c - 32-bits init routines. … … 163 163 164 164 case 'e': 165 case 'E':/* E LF*/165 case 'E':/* Elf or EXe */ 166 166 pszTmp2 = strpbrk(pszTmp, ":=/- "); 167 if (pszTmp2 != NULL 168 && (pszTmp2[1] == 'N' ||pszTmp2[1] == 'n' || pszTmp2[1] == 'D' || pszTmp2[1] == 'd') 169 ) 170 options.fElf = FALSE; 167 if (pszTmp[1] != 'x' && pszTmp != 'X') 168 { 169 options.fElf = !(pszTmp2 != NULL 170 && ( pszTmp2[1] == 'N' || pszTmp2[1] == 'n' 171 || pszTmp2[1] == 'D' || pszTmp2[1] == 'd')); 172 } 171 173 else 172 options.fElf = TRUE; 174 { 175 options.fExeFixes = !(pszTmp2 != NULL 176 && ( pszTmp2[1] == 'N' || pszTmp2[1] == 'n' 177 || pszTmp2[1] == 'D' || pszTmp2[1] == 'd')); 178 } 173 179 break; 174 180 -
TabularUnified tags/trunk/src/win32k/include/options.h ¶
r15341 r15395 1 /* $Id: options.h,v 1.1 3 2000-12-11 06:22:14bird Exp $1 /* $Id: options.h,v 1.14 2000-12-17 22:45:52 bird Exp $ 2 2 * 3 3 * Options. … … 63 63 FALSE, /* fNoLoader */ \ 64 64 TRUE, /* fDllFixes */ \ 65 TRUE, /* fExeFixes */ \ 65 66 CB_SWP_INIT, /* cbSwpHeapInit */ \ 66 67 CB_SWP_MAX, /* cbSwpHeapMax */ \ … … 89 90 #define isDllFixesEnabled() (options.fDllFixes) 90 91 #define isDllFixesDisabled() (!options.fDllFixes) 92 93 #define isExeFixesEnabled() (options.fExeFixes) 94 #define isExeFixesDisabled() (!options.fExeFixes) 91 95 92 96 /* INC */ … … 133 137 /** @cat Options affecting the behaviour changes in the OS/2 loader */ 134 138 ULONG fDllFixes; /* Enables the long DLL name and non .DLL extention fixes. */ 139 ULONG fExeFixes; /* Enables EXE files to export entry points. */ 135 140 136 141 /** @cat Options affecting the heap. */
Note:
See TracChangeset
for help on using the changeset viewer.