Changeset 4880 for trunk/src


Ignore:
Timestamp:
Jan 8, 2001, 7:05:26 PM (25 years ago)
Author:
bird
Message:

Changed PE loading to default to using pe.exe - for the time being.

Location:
trunk/src/win32k
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/include/options.h

    r4828 r4880  
    1 /* $Id: options.h,v 1.14 2000-12-17 22:45:52 bird Exp $
     1/* $Id: options.h,v 1.15 2001-01-08 18:05:26 bird Exp $
    22 *
    33 * Options.
     
    5555            (unsigned short)~0,     /* usVerMajor    */     \
    5656            (unsigned short)~0,     /* usVerMinor    */     \
    57             FLAGS_PE_MIXED,         /* fPE           */     \
     57            FLAGS_PE_PE,            /* fPE           */     \
    5858            INFOLEVEL_QUIET,        /* ulInfoLevel   */     \
    5959            FALSE,                  /* fElf          */     \
  • trunk/src/win32k/utils/Win32kCC.c

    r4792 r4880  
    1 /* $Id: Win32kCC.c,v 1.9 2000-12-12 15:34:17 bird Exp $
     1/* $Id: Win32kCC.c,v 1.10 2001-01-08 18:05:26 bird Exp $
    22 *
    33 * Win32CC - Win32k Control Center.
     
    352352                    if (pThis->NewOptions.usCom == 0x2e8)       strcat(szArgs, " -C4");
    353353                    if (pThis->NewOptions.fPE == FLAGS_PE_PE2LX)strcat(szArgs, " -P:pe2lx");
    354                     /*if (pThis->NewOptions.fPE == FLAGS_PE_MIXED)strcat(szArgs, " -P:mixed"); - default */
    355                     if (pThis->NewOptions.fPE == FLAGS_PE_PE)   strcat(szArgs, " -P:pe");
     354                    /*if (pThis->NewOptions.fPE == FLAGS_PE_MIXED)strcat(szArgs, " -P:mixed"); - old default */
     355                    if (pThis->NewOptions.fPE == FLAGS_PE_MIXED)strcat(szArgs, " -P:mixed");
     356                    /* if (pThis->NewOptions.fPE == FLAGS_PE_PE)   strcat(szArgs, " -P:pe"); - default */
    356357                    if (pThis->NewOptions.fPE == FLAGS_PE_NOT)  strcat(szArgs, " -P:not");
    357358                    if (pThis->NewOptions.ulInfoLevel != 0) /* -W0 is default */
Note: See TracChangeset for help on using the changeset viewer.