- Timestamp:
- Jan 8, 2001, 7:05:26 PM (25 years ago)
- 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.1 4 2000-12-17 22:45:52bird Exp $1 /* $Id: options.h,v 1.15 2001-01-08 18:05:26 bird Exp $ 2 2 * 3 3 * Options. … … 55 55 (unsigned short)~0, /* usVerMajor */ \ 56 56 (unsigned short)~0, /* usVerMinor */ \ 57 FLAGS_PE_ MIXED,/* fPE */ \57 FLAGS_PE_PE, /* fPE */ \ 58 58 INFOLEVEL_QUIET, /* ulInfoLevel */ \ 59 59 FALSE, /* fElf */ \ -
trunk/src/win32k/utils/Win32kCC.c
r4792 r4880 1 /* $Id: Win32kCC.c,v 1. 9 2000-12-12 15:34:17bird Exp $1 /* $Id: Win32kCC.c,v 1.10 2001-01-08 18:05:26 bird Exp $ 2 2 * 3 3 * Win32CC - Win32k Control Center. … … 352 352 if (pThis->NewOptions.usCom == 0x2e8) strcat(szArgs, " -C4"); 353 353 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 */ 356 357 if (pThis->NewOptions.fPE == FLAGS_PE_NOT) strcat(szArgs, " -P:not"); 357 358 if (pThis->NewOptions.ulInfoLevel != 0) /* -W0 is default */
Note:
See TracChangeset
for help on using the changeset viewer.