- Timestamp:
- Feb 12, 2001, 12:43:22 AM (25 years ago)
- Location:
- trunk/src/win32k/k32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/k32/k32QueryOptionsStatus.cpp
r5086 r5118 1 /* $Id: k32QueryOptionsStatus.cpp,v 1. 6 2001-02-10 11:11:44bird Exp $1 /* $Id: k32QueryOptionsStatus.cpp,v 1.7 2001-02-11 23:43:00 bird Exp $ 2 2 * 3 3 * k32QueryOptionsStatus - Queries the options and/or the status of … … 137 137 TmpOptions.fNoLoader = options.fNoLoader; 138 138 TmpOptions.fDllFixes = options.fDllFixes; 139 TmpOptions.fExeFixes = options.fExeFixes; 140 TmpOptions.fForcePreload= options.fForcePreload; 141 TmpOptions.fApiEnh = options.fApiEnh; 139 142 TmpOptions.cbSwpHeapMax = options.cbSwpHeapMax; 140 143 TmpOptions.cbResHeapMax = options.cbResHeapMax; -
trunk/src/win32k/k32/k32SetOptions.cpp
r5086 r5118 1 /* $Id: k32SetOptions.cpp,v 1. 6 2001-02-10 11:11:44bird Exp $1 /* $Id: k32SetOptions.cpp,v 1.7 2001-02-11 23:43:00 bird Exp $ 2 2 * 3 3 * k32SetOptions - Sets the changable options of win32k.sys the options. … … 130 130 if (TmpOptions.fDllFixes > 1) 131 131 return ERROR_INVALID_PARAMETER; 132 if (TmpOptions.fExeFixes > 1) 133 return ERROR_INVALID_PARAMETER; 134 if (TmpOptions.fForcePreload > 1) 135 return ERROR_INVALID_PARAMETER; 136 if (TmpOptions.fApiEnh > 1) 137 return ERROR_INVALID_PARAMETER; 132 138 if (TmpOptions.cbSwpHeapMax > (32768*1024) || TmpOptions.cbSwpHeapMax < options.cbSwpHeapInit) 133 139 return ERROR_INVALID_PARAMETER; … … 160 166 options.fNoLoader = TmpOptions.fNoLoader; /* No loader stuff. !FIXME! We should import / functions even if this flag is set!!! */ 161 167 options.fDllFixes = TmpOptions.fDllFixes; /* Enables the long DLL name and non .DLL extention fixes. */ 168 options.fExeFixes = TmpOptions.fExeFixes; /* Enables EXE files to export entry points. */ 169 options.fForcePreload=TmpOptions.fForcePreload; /* Forces the loader to preload executable images. Handy for ICAT Ring-3 debugging. */ 170 options.fApiEnh = TmpOptions.fApiEnh; /* Enables the API enhancements */ 162 171 163 172 options.cbSwpHeapMax = TmpOptions.cbSwpHeapMax; /* Maximum heapsize. */ … … 170 179 */ 171 180 LDRClearSem(); 172 173 181 } 174 182
Note:
See TracChangeset
for help on using the changeset viewer.