Changeset 7811 for trunk/src/kernel32/windllbase.cpp
- Timestamp:
- Feb 6, 2002, 5:33:40 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.cpp
r6249 r7811 1 /* $Id: windllbase.cpp,v 1.2 7 2001-07-08 11:02:10sandervl Exp $ */1 /* $Id: windllbase.cpp,v 1.28 2002-02-06 16:33:38 sandervl Exp $ */ 2 2 3 3 /* … … 407 407 if(fSetExceptionHandler) { 408 408 OS2SetExceptionHandler((void *)&exceptFrame); 409 sel = SetWin32TIB( );409 sel = SetWin32TIB(isPEImage() ? TIB_SWITCH_FORCE_WIN32 : TIB_SWITCH_DEFAULT); 410 410 } 411 411 … … 482 482 483 483 fUnloaded = TRUE; 484 sel = SetWin32TIB( );484 sel = SetWin32TIB(isPEImage() ? TIB_SWITCH_FORCE_WIN32 : TIB_SWITCH_DEFAULT); 485 485 486 486 // @@@PH 2000/06/13 lpvReserved, Starcraft STORM.DLL … … 497 497 rc = dllEntryPoint(hinstance, DLL_PROCESS_DETACH, lpvReserved); 498 498 499 SetFS(sel); 499 SetFS(sel); //restore FS 500 500 tlsDetachThread(); //destroy TLS (main thread) 501 501 tlsDelete();
Note:
See TracChangeset
for help on using the changeset viewer.