@@ -100,14 +100,14 @@ enum eLoadFlags
100
100
MapInHighMem = 0x20 , // Try to map image in address space beyond 4GB limit
101
101
RebaseProcess = 0x40 , // If target image is an .exe file, process base address will be replaced with mapped module value
102
102
NoThreads = 0x80 , // Don't create new threads, use hijacking
103
- ForceRemap = 0x100 , // Force remapping module even if it's already loaded
104
-
105
- NoExceptions = 0x01000 , // Do not create custom exception handler
106
- PartialExcept = 0x02000 , // Only create Inverted function table, without VEH
107
- NoDelayLoad = 0x04000 , // Do not resolve delay import
108
- NoSxS = 0x08000 , // Do not apply SxS activation context
109
- NoTLS = 0x10000 , // Skip TLS initialization and don't execute TLS callbacks
110
- IsDependency = 0x20000 , // Module is a dependency
103
+ ForceRemap = 0x100 , // Force remapping module even if it's already loaded
104
+
105
+ NoExceptions = 0x01000 , // Do not create custom exception handler
106
+ PartialExcept = 0x02000 , // Only create Inverted function table, without VEH
107
+ NoDelayLoad = 0x04000 , // Do not resolve delay import
108
+ NoSxS = 0x08000 , // Do not apply SxS activation context
109
+ NoTLS = 0x10000 , // Skip TLS initialization and don't execute TLS callbacks
110
+ IsDependency = 0x20000 , // Module is a dependency
111
111
};
112
112
113
113
ENUM_OPS ( eLoadFlags )
0 commit comments