Changeset 5049 for trunk/src


Ignore:
Timestamp:
Feb 2, 2001, 9:27:16 AM (25 years ago)
Author:
bird
Message:
Added paramter -1<+|*>.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/dev32/d32init.c

    r4997 r5049  
    1 /* $Id: d32init.c,v 1.30 2001-01-20 23:53:27 bird Exp $
     1/* $Id: d32init.c,v 1.31 2001-02-02 08:27:16 bird Exp $
    22 *
    33 * d32init.c - 32-bits init routines.
     
    6464#ifdef DEBUG
    6565static char * apszPE[] = {"FLAGS_PE_NOT", "FLAGS_PE_PE2LX", "FLAGS_PE_PE", "FLAGS_PE_MIXED", "!invalid!"};
     66static char * apszPEOneObject[] = {"FLAGS_PEOO_DISABLED", "FLAGS_PEOO_ENABLED", "FLAGS_PEOO_FORCED", "!invalid!"};
    6667static char * apszInfoLevel[] = {"INFOLEVEL_QUIET", "INFOLEVEL_ERROR", "INFOLEVEL_WARNING", "INFOLEVEL_INFO", "INFOLEVEL_INFOALL", "!invalid!"};
    6768#endif
     
    134135        switch (*pszTmp)
    135136        {
     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
    136146            case 'c':
    137147            case 'C': /* -C[1|2|3|4] or -Com:[1|2|3|4]  -  com-port no, def:-C2 */
     
    355365
    356366    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)]));
    357368    kprintf(("\tulInfoLevel=%d (%s)\n", options.ulInfoLevel, apszInfoLevel[MIN(options.ulInfoLevel, 5)]));
    358369    kprintf(("\tfElf=%d\n",         options.fElf));
Note: See TracChangeset for help on using the changeset viewer.