Changeset 5051 for trunk/src/win32k/include/options.h
- Timestamp:
- Feb 2, 2001, 9:41:31 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/options.h
r5000 r5051 1 /* $Id: options.h,v 1.1 8 2001-01-21 07:54:37bird Exp $1 /* $Id: options.h,v 1.19 2001-02-02 08:39:52 bird Exp $ 2 2 * 3 3 * Options. … … 39 39 #define FLAGS_PE_MIXED 0x00000003UL 40 40 41 /* fPEOneObject */ 42 #define FLAGS_PEOO_DISABLED 0x00000000UL 43 #define FLAGS_PEOO_ENABLED 0x00000001UL 44 #define FLAGS_PEOO_FORCED 0x00000002UL 45 41 46 /* ulInfoLevel */ 42 47 #define INFOLEVEL_QUIET 0x00000000UL … … 63 68 (unsigned short)~0, /* usVerMinor */ \ 64 69 FLAGS_PE_PE, /* fPE */ \ 70 FLAGS_PEOO_FORCED, /* fPEOneObject */ \ 65 71 INFOLEVEL_QUIET, /* ulInfoLevel */ \ 66 72 FALSE, /* fElf */ \ … … 83 89 #define isPe2LxLoaderEnabled() (options.fPE == FLAGS_PE_PE2LX) 84 90 #define isMixedPeLoaderEnabled() (options.fPE == FLAGS_PE_MIXED) 91 #define isPEOneObjectEnabled() (options.fPEOneObject == FLAGS_PEOO_ENABLED) 92 #define isPEOneObjectDisabled() (options.fPEOneObject == FLAGS_PEOO_DISABLED) 93 #define isPEOneObjectForced() (options.fPEOneObject == FLAGS_PEOO_FORCED) 85 94 86 95 #define isELFDisabled() (!options.fElf) … … 129 138 /** @cat Options affecting the generated LX executables */ 130 139 ULONG fPE; /* Flags set the type of conversion. */ 140 ULONG fPEOneObject; /* All in one object. */ 131 141 ULONG ulInfoLevel; /* Pe2Lx InfoLevel. */ 132 142 … … 165 175 extern struct options DATA16_GLOBAL options; /* defined in d16globals.c */ 166 176 extern char szWin32kIni[160]; /* defined in d16globals.c */ 177 #ifdef RING0 167 178 #if defined(__IBMC__) || defined(__IBMCPP__) 168 179 #pragma map( options , "_options" ) 169 180 #pragma map( szWin32kIni, "_szWin32kIni" ) 181 #endif 170 182 #endif 171 183 /* INC */
Note:
See TracChangeset
for help on using the changeset viewer.