Changeset 4774 for trunk/src/win32k/k32/k32SetOptions.cpp
- Timestamp:
- Dec 11, 2000, 7:22:15 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/k32/k32SetOptions.cpp
r4307 r4774 1 /* $Id: k32SetOptions.cpp,v 1. 3 2000-09-22 09:22:38bird Exp $1 /* $Id: k32SetOptions.cpp,v 1.4 2000-12-11 06:22:15 bird Exp $ 2 2 * 3 3 * k32SetOptions - Sets the changable options of win32k.sys the options. … … 126 126 if (TmpOptions.fREXXScript > 1) 127 127 return ERROR_INVALID_PARAMETER; 128 if (TmpOptions.fDllFixes > 1) 129 return ERROR_INVALID_PARAMETER; 128 130 if (TmpOptions.cbSwpHeapMax > (32768*1024) || TmpOptions.cbSwpHeapMax < options.cbSwpHeapInit) 129 131 return ERROR_INVALID_PARAMETER; … … 154 156 options.fJava = TmpOptions.fJava; /* Java flags. */ 155 157 options.fNoLoader = TmpOptions.fNoLoader; /* No loader stuff. !FIXME! We should import / functions even if this flag is set!!! */ 158 options.fDllFixes = TmpOptions.fDllFixes; /* Enables the long DLL name and non .DLL extention fixes. */ 156 159 157 160 options.cbSwpHeapMax = TmpOptions.cbSwpHeapMax; /* Maximum heapsize. */
Note:
See TracChangeset
for help on using the changeset viewer.