Changeset 4201 for trunk/src/kernel32/initterm.cpp
- Timestamp:
- Sep 7, 2000, 8:12:56 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/initterm.cpp
r4167 r4201 1 /* $Id: initterm.cpp,v 1.4 5 2000-09-02 21:14:50 birdExp $ */1 /* $Id: initterm.cpp,v 1.46 2000-09-07 18:12:56 sandervl Exp $ */ 2 2 3 3 /* … … 171 171 //(std handles can be used in win32 dll initialization routines 172 172 HMInitialize(); /* store standard handles within HandleManager */ 173 Init ializeTIB(TRUE); //MUST be done after HMInitialize!174 Init Directories();173 InitDirectories(); //Must be done before InitializeTIB (which loads NTDLL -> USER32) 174 InitializeTIB(TRUE); //Must be done after HMInitialize! 175 175 RegisterDevices(); 176 176 Win32DllBase::setDefaultRenaming(); … … 186 186 187 187 case 1 : 188 if (dllHandle)189 {190 UnregisterLxDll(dllHandle);191 }192 break;188 if (dllHandle) 189 { 190 UnregisterLxDll(dllHandle); 191 } 192 break; 193 193 194 194 default :
Note:
See TracChangeset
for help on using the changeset viewer.