Changeset 9957 for trunk/src/win32k/include/options.h
- Timestamp:
- Mar 31, 2003, 4:53:32 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/options.h
r9954 r9957 1 /* $Id: options.h,v 1.2 5 2003-03-31 01:22:45bird Exp $1 /* $Id: options.h,v 1.26 2003-03-31 02:53:31 bird Exp $ 2 2 * 3 3 * Options. … … 92 92 FLAGS_PE_PE, /* fPE */ \ 93 93 FLAGS_PEOO_FORCED, /* fPEOneObject */ \ 94 FALSE, /* fAllRWObjects */ \ 95 FALSE, /* fSkipFixups */ \ 94 96 INFOLEVEL_QUIET, /* ulInfoLevel */ \ 95 97 FALSE, /* fElf */ \ … … 98 100 TRUE, /* fJava */ \ 99 101 FALSE, /* fNoLoader */ \ 100 FALSE, /* fSkipFixups */ \101 102 NULL, /* pszCustomDll */ \ 102 103 NULL, /* pszCustomExports */ \ … … 121 122 #define isPEOneObjectForced() (options.fPEOneObject == FLAGS_PEOO_FORCED) 122 123 124 #define isAllRWObjectsEnabled() (options.fAllRWObjects) 125 #define isAllRWObjectsDisabled() (!options.fAllRWObjects) 126 123 127 #define isELFDisabled() (!options.fElf) 124 128 #define isELFEnabled() (options.fElf) … … 178 182 ULONG fPE; /* Flags set the type of conversion. */ 179 183 ULONG fPEOneObject; /* All in one object. */ 184 ULONG fAllRWObjects; /* All objects are writable. */ 185 ULONG fSkipFixups; /* Base the image stripping of fixups. (Exe only please.) */ 180 186 ULONG ulInfoLevel; /* Pe2Lx InfoLevel. */ 181 187 … … 195 201 ULONG fNoLoader; /* No loader stuff. !FIXME! We should import / functions even if this flag is set!!! */ 196 202 197 ULONG fSkipFixups;198 203 char * pszCustomDll; /* Pointer to custom odin dll name */ 199 204 char * pszCustomExports; /* Pointer to custom export table */
Note:
See TracChangeset
for help on using the changeset viewer.