Changeset 22010
- Timestamp:
 - Aug 6, 2012, 2:01:29 AM (13 years ago)
 - Location:
 - trunk/src/kernel32
 - Files:
 - 
      
- 4 edited
 
- 
          
  winexelx.cpp (modified) (1 diff)
 - 
          
  winexepe2lx.cpp (modified) (1 diff)
 - 
          
  winexepeldr.cpp (modified) (1 diff)
 - 
          
  wprocess.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/kernel32/winexelx.cpp
r21999 r22010 47 47 PTIB ptib; 48 48 49 if (!fForceWin32TIB) { 49 if (fForceWin32TIB) { 50 fSwitchTIBSel = TRUE; 51 } else { 50 52 //Signal to TEB management that we're a real OS/2 app and don't 51 53 //require setting FS to our special win32 selector  - 
      
trunk/src/kernel32/winexepe2lx.cpp
r21916 r22010 128 128 Win32Pe2LxImage(hinstance, fWin32k) 129 129 { 130 //Signal to TEB management that we're an ummodified Win32 app and 131 //require setting FS to our special win32 selector 132 fSwitchTIBSel = TRUE; 130 133 } 131 134  - 
      
trunk/src/kernel32/winexepeldr.cpp
r21916 r22010 168 168 Win32PeLdrImage(szFileName, TRUE) 169 169 { 170 //Signal to TEB management that we're an ummodified Win32 app and 171 //require setting FS to our special win32 selector 172 fSwitchTIBSel = TRUE; 173 170 174 dprintf(("Win32PeLdrExe ctor: %s", szFileName)); 171 175 this->fConsoleApp = fConsoleApp;  - 
      
trunk/src/kernel32/wprocess.cpp
r22000 r22010 81 81 BOOL fIsOS2Image = FALSE; /* TRUE -> Odin32 OS/2 application (not converted!) */ 82 82 /* FALSE -> otherwise */ 83 BOOL fSwitchTIBSel = TRUE;// TRUE -> switch TIB selectors83 BOOL fSwitchTIBSel = FALSE; // TRUE -> switch TIB selectors 84 84 // FALSE -> don't 85 85 BOOL fForceWin32TIB = FALSE; // TRUE -> force TIB switch  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  