Changeset 5119 for trunk/src/win32k/utils/Win32kCC.c
- Timestamp:
- Feb 12, 2001, 12:44:38 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/utils/Win32kCC.c
r5051 r5119 1 /* $Id: Win32kCC.c,v 1.1 1 2001-02-02 08:41:31bird Exp $1 /* $Id: Win32kCC.c,v 1.12 2001-02-11 23:41:46 bird Exp $ 2 2 * 3 3 * Win32CC - Win32k Control Center. … … 364 364 if (pThis->NewOptions.fNoLoader) strcat(szArgs, " -Noloader"); 365 365 if (!pThis->NewOptions.fDllFixes) strcat(szArgs, " -DllFixes:D"); /* default is enabled */ 366 if (!pThis->NewOptions.fForcePreload) strcat(szArgs, " -ForcePreload:Y"); /* default is disabled */ 366 367 if (pThis->NewOptions.cbSwpHeapMax != CB_SWP_MAX) 367 368 sprintf(szArgs + strlen(szArgs), " -HeapMax:%d", pThis->NewOptions.cbSwpHeapMax); /* FIXME - to be changed */ … … 547 548 /* OS/2 Loader Fixes */ 548 549 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); 549 551 550 552 /* heaps */ … … 687 689 */ 688 690 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; 689 692 690 693 /*
Note:
See TracChangeset
for help on using the changeset viewer.