Changeset 4772 for trunk/src/win32k/utils/Win32kCC.c
- Timestamp:
- Dec 11, 2000, 7:17:51 AM (25 years ago)
- 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 $ 2 2 * 3 3 * Win32CC - Win32k Control Center. … … 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 364 if (pThis->NewOptions.cbSwpHeapMax != CB_SWP_MAX) 364 365 sprintf(szArgs + strlen(szArgs), " -HeapMax:%d", pThis->NewOptions.cbSwpHeapMax); /* FIXME - to be changed */ … … 540 541 /* REXX Scripts */ 541 542 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); 542 546 543 547 /* heaps */ … … 670 674 671 675 /* 676 * OS/2 Loader Fixes. 677 */ 678 pThis->NewOptions.fDllFixes = WinSendDlgItemMsg(hwnd, CB_LDRFIX_DLLFIXES, BM_QUERYCHECK, NULL, NULL) != 0; 679 680 /* 672 681 * Heaps 673 682 */
Note:
See TracChangeset
for help on using the changeset viewer.