Ignore:
Timestamp:
Feb 12, 2001, 12:44:38 AM (25 years ago)
Author:
bird
Message:

Added force preload.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/utils/Win32kCC.c

    r5051 r5119  
    1 /* $Id: Win32kCC.c,v 1.11 2001-02-02 08:41:31 bird Exp $
     1/* $Id: Win32kCC.c,v 1.12 2001-02-11 23:41:46 bird Exp $
    22 *
    33 * Win32CC - Win32k Control Center.
     
    364364                    if (pThis->NewOptions.fNoLoader)            strcat(szArgs, " -Noloader");
    365365                    if (!pThis->NewOptions.fDllFixes)           strcat(szArgs, " -DllFixes:D"); /* default is enabled */
     366                    if (!pThis->NewOptions.fForcePreload)       strcat(szArgs, " -ForcePreload:Y"); /* default is disabled */
    366367                    if (pThis->NewOptions.cbSwpHeapMax != CB_SWP_MAX)
    367368                        sprintf(szArgs + strlen(szArgs), " -HeapMax:%d", pThis->NewOptions.cbSwpHeapMax); /* FIXME - to be changed */
     
    547548            /* OS/2 Loader Fixes */
    548549            WinSendDlgItemMsg(hwnd, CB_LDRFIX_DLLFIXES,     BM_SETCHECK,    (MPARAM)(pThis->Options.fDllFixes),                 NULL);
     550            WinSendDlgItemMsg(hwnd, CB_LDRFIX_FORCEPRELOAD, BM_SETCHECK,    (MPARAM)(pThis->Options.fForcePreload),             NULL);
    549551
    550552            /* heaps */
     
    687689             */
    688690            pThis->NewOptions.fDllFixes = WinSendDlgItemMsg(hwnd, CB_LDRFIX_DLLFIXES, BM_QUERYCHECK, NULL, NULL) != 0;
     691            pThis->NewOptions.fForcePreload = WinSendDlgItemMsg(hwnd, CB_LDRFIX_FORCEPRELOAD, BM_QUERYCHECK, NULL, NULL) != 0;
    689692
    690693            /*
Note: See TracChangeset for help on using the changeset viewer.