Changeset 4995 for trunk/src/win32k/include/options.h
- Timestamp:
- Jan 21, 2001, 12:50:45 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/options.h
r4972 r4995 1 /* $Id: options.h,v 1.1 6 2001-01-19 02:28:53bird Exp $1 /* $Id: options.h,v 1.17 2001-01-20 23:50:45 bird Exp $ 2 2 * 3 3 * Options. … … 71 71 TRUE, /* fDllFixes */ \ 72 72 TRUE, /* fExeFixes */ \ 73 FALSE, /* fApiEnh */ \ 73 74 CB_SWP_INIT, /* cbSwpHeapInit */ \ 74 75 CB_SWP_MAX, /* cbSwpHeapMax */ \ … … 100 101 #define isExeFixesEnabled() (options.fExeFixes) 101 102 #define isExeFixesDisabled() (!options.fExeFixes) 103 104 #define isApiEnhEnabled() (options.fApiEnh) 105 #define isApiEnhDisabled() (!options.fApiEnh) 102 106 103 107 /* INC */ … … 145 149 ULONG fDllFixes; /* Enables the long DLL name and non .DLL extention fixes. */ 146 150 ULONG fExeFixes; /* Enables EXE files to export entry points. */ 151 ULONG fApiEnh; /* Enables the API enhancements */ 147 152 148 153 /** @cat Options affecting the heap. */ … … 159 164 /* NOINC */ 160 165 extern struct options DATA16_GLOBAL options; /* defined in d16globals.c */ 166 extern char szWin32kIni[CCHMAXPATH]; /* defined in d16globals.c */ 161 167 #if defined(__IBMC__) || defined(__IBMCPP__) 162 168 #pragma map( options , "_options" ) 169 #pragma map( szWin32kIni, "_szWin32kIni" ) 163 170 #endif 164 171 /* INC */
Note:
See TracChangeset
for help on using the changeset viewer.