- Timestamp:
- Feb 2, 2001, 9:27:16 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/dev32/d32init.c
r4997 r5049 1 /* $Id: d32init.c,v 1.3 0 2001-01-20 23:53:27bird Exp $1 /* $Id: d32init.c,v 1.31 2001-02-02 08:27:16 bird Exp $ 2 2 * 3 3 * d32init.c - 32-bits init routines. … … 64 64 #ifdef DEBUG 65 65 static char * apszPE[] = {"FLAGS_PE_NOT", "FLAGS_PE_PE2LX", "FLAGS_PE_PE", "FLAGS_PE_MIXED", "!invalid!"}; 66 static char * apszPEOneObject[] = {"FLAGS_PEOO_DISABLED", "FLAGS_PEOO_ENABLED", "FLAGS_PEOO_FORCED", "!invalid!"}; 66 67 static char * apszInfoLevel[] = {"INFOLEVEL_QUIET", "INFOLEVEL_ERROR", "INFOLEVEL_WARNING", "INFOLEVEL_INFO", "INFOLEVEL_INFOALL", "!invalid!"}; 67 68 #endif … … 134 135 switch (*pszTmp) 135 136 { 137 case '1': /* All-In-One-Object fix - temporary...- -1<-|+|*> */ 138 if (pszTmp[1] == '-') 139 options.fPEOneObject = FLAGS_PEOO_DISABLED; 140 else if (pszTmp[1] == '+') 141 options.fPEOneObject = FLAGS_PEOO_ENABLED; 142 else 143 options.fPEOneObject = FLAGS_PEOO_FORCED; 144 break; 145 136 146 case 'c': 137 147 case 'C': /* -C[1|2|3|4] or -Com:[1|2|3|4] - com-port no, def:-C2 */ … … 355 365 356 366 kprintf(("\tfPE=%d (%s)\n", options.fPE, apszPE[MIN(options.fPE, 5)])); 367 kprintf(("\tfPEOneObject=%d (%s)\n", options.fPEOneObject, apszPEOneObject[MIN(options.fPEOneObject, 3)])); 357 368 kprintf(("\tulInfoLevel=%d (%s)\n", options.ulInfoLevel, apszInfoLevel[MIN(options.ulInfoLevel, 5)])); 358 369 kprintf(("\tfElf=%d\n", options.fElf));
Note:
See TracChangeset
for help on using the changeset viewer.