- Timestamp:
- Dec 12, 2000, 4:32:16 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/utils/Win32kCC.c
r4772 r4791 1 /* $Id: Win32kCC.c,v 1. 7 2000-12-11 06:17:50bird Exp $1 /* $Id: Win32kCC.c,v 1.8 2000-12-12 15:32:16 bird Exp $ 2 2 * 3 3 * Win32CC - Win32k Control Center. … … 351 351 if (pThis->NewOptions.usCom == 0x2e8) strcat(szArgs, " -C4"); 352 352 if (pThis->NewOptions.fPE == FLAGS_PE_PE2LX)strcat(szArgs, " -P:pe2lx"); 353 if (pThis->NewOptions.fPE == FLAGS_PE_MIXED)strcat(szArgs, " -P:mixed");353 /*if (pThis->NewOptions.fPE == FLAGS_PE_MIXED)strcat(szArgs, " -P:mixed"); - default */ 354 354 if (pThis->NewOptions.fPE == FLAGS_PE_PE) strcat(szArgs, " -P:pe"); 355 355 if (pThis->NewOptions.fPE == FLAGS_PE_NOT) strcat(szArgs, " -P:not"); … … 361 361 if (!pThis->NewOptions.fJava) strcat(szArgs, " -Java:N"); 362 362 if (pThis->NewOptions.fNoLoader) strcat(szArgs, " -Noloader"); 363 if ( pThis->NewOptions.fDllFixes) strcat(szArgs, " -DllFixes");363 if (!pThis->NewOptions.fDllFixes) strcat(szArgs, " -DllFixes:D"); /* default is enabled */ 364 364 if (pThis->NewOptions.cbSwpHeapMax != CB_SWP_MAX) 365 365 sprintf(szArgs + strlen(szArgs), " -HeapMax:%d", pThis->NewOptions.cbSwpHeapMax); /* FIXME - to be changed */
Note:
See TracChangeset
for help on using the changeset viewer.