Ignore:
Timestamp:
Dec 11, 2000, 7:17:51 AM (25 years ago)
Author:
bird
Message:

Added support for new option fDllFixes.

File:
1 edited

Legend:

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

    r4747 r4772  
    1 /* $Id: Win32kCC.c,v 1.6 2000-12-03 22:00:30 bird Exp $
     1/* $Id: Win32kCC.c,v 1.7 2000-12-11 06:17:50 bird Exp $
    22 *
    33 * Win32CC - Win32k Control Center.
     
    361361                    if (!pThis->NewOptions.fJava)               strcat(szArgs, " -Java:N");
    362362                    if (pThis->NewOptions.fNoLoader)            strcat(szArgs, " -Noloader");
     363                    if (pThis->NewOptions.fDllFixes)            strcat(szArgs, " -DllFixes");
    363364                    if (pThis->NewOptions.cbSwpHeapMax != CB_SWP_MAX)
    364365                        sprintf(szArgs + strlen(szArgs), " -HeapMax:%d", pThis->NewOptions.cbSwpHeapMax); /* FIXME - to be changed */
     
    540541            /* REXX Scripts */
    541542            WinSendDlgItemMsg(hwnd, CB_LDR_REXX,            BM_SETCHECK,    (MPARAM)(pThis->Options.fREXXScript),               NULL);
     543
     544            /* OS/2 Loader Fixes */
     545            WinSendDlgItemMsg(hwnd, CB_LDRFIX_DLLFIXES,     BM_SETCHECK,    (MPARAM)(pThis->Options.fDllFixes),                 NULL);
    542546
    543547            /* heaps */
     
    670674
    671675            /*
     676             * OS/2 Loader Fixes.
     677             */
     678            pThis->NewOptions.fDllFixes = WinSendDlgItemMsg(hwnd, CB_LDRFIX_DLLFIXES, BM_QUERYCHECK, NULL, NULL) != 0;
     679
     680            /*
    672681             * Heaps
    673682             */
Note: See TracChangeset for help on using the changeset viewer.