Changeset 5119 for trunk/src/win32k/include/options.h
- Timestamp:
- Feb 12, 2001, 12:44:38 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/options.h
r5097 r5119 1 /* $Id: options.h,v 1.2 0 2001-02-11 15:04:26bird Exp $1 /* $Id: options.h,v 1.21 2001-02-11 23:44:38 bird Exp $ 2 2 * 3 3 * Options. … … 79 79 TRUE, /* fDllFixes */ \ 80 80 TRUE, /* fExeFixes */ \ 81 FALSE, /* fForcePreload */ \ 81 82 FALSE, /* fApiEnh */ \ 82 83 CB_SWP_INIT, /* cbSwpHeapInit */ \ … … 114 115 #define isExeFixesEnabled() (options.fExeFixes) 115 116 #define isExeFixesDisabled() (!options.fExeFixes) 117 118 #define isForcePreloadEnabled() (options.fForcePreload) 119 #define isForcePreloadDisabled() (!options.fForcePreload) 116 120 117 121 #define isApiEnhEnabled() (options.fApiEnh) … … 163 167 ULONG fDllFixes; /* Enables the long DLL name and non .DLL extention fixes. */ 164 168 ULONG fExeFixes; /* Enables EXE files to export entry points. */ 169 ULONG fForcePreload; /* Forces the loader to preload executable images. Handy for ICAT Ring-3 debugging. */ 165 170 ULONG fApiEnh; /* Enables the API enhancements */ 166 171
Note:
See TracChangeset
for help on using the changeset viewer.