Changeset 4774 for trunk/src/win32k/include/options.h
- Timestamp:
- Dec 11, 2000, 7:22:15 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/options.h
r4307 r4774 1 /* $Id: options.h,v 1.1 2 2000-09-22 09:22:37bird Exp $1 /* $Id: options.h,v 1.13 2000-12-11 06:22:14 bird Exp $ 2 2 * 3 3 * Options. … … 62 62 TRUE, /* fJava */ \ 63 63 FALSE, /* fNoLoader */ \ 64 TRUE, /* fDllFixes */ \ 64 65 CB_SWP_INIT, /* cbSwpHeapInit */ \ 65 66 CB_SWP_MAX, /* cbSwpHeapMax */ \ … … 84 85 85 86 #define isSMPKernel() (options.fKernel & KF_SMP) 86 #define isUNIKernel() !(options.fKernel & KF_SMP) 87 #define isUNIKernel() (!(options.fKernel & KF_SMP)) 88 89 #define isDllFixesEnabled() (options.fDllFixes) 90 #define isDllFixesDisabled() (!options.fDllFixes) 91 87 92 /* INC */ 88 93 … … 126 131 ULONG fNoLoader; /* No loader stuff. !FIXME! We should import / functions even if this flag is set!!! */ 127 132 133 /** @cat Options affecting the behaviour changes in the OS/2 loader */ 134 ULONG fDllFixes; /* Enables the long DLL name and non .DLL extention fixes. */ 135 128 136 /** @cat Options affecting the heap. */ 129 137 ULONG cbSwpHeapInit; /* Initial heapsize. */
Note:
See TracChangeset
for help on using the changeset viewer.