Changeset 4201 for trunk/src


Ignore:
Timestamp:
Sep 7, 2000, 8:12:56 PM (25 years ago)
Author:
sandervl
Message:

initdirectories call done earlier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/initterm.cpp

    r4167 r4201  
    1 /* $Id: initterm.cpp,v 1.45 2000-09-02 21:14:50 bird Exp $ */
     1/* $Id: initterm.cpp,v 1.46 2000-09-07 18:12:56 sandervl Exp $ */
    22
    33/*
     
    171171            //(std handles can be used in win32 dll initialization routines
    172172            HMInitialize();             /* store standard handles within HandleManager */
    173             InitializeTIB(TRUE);    //MUST be done after HMInitialize!
    174             InitDirectories();
     173            InitDirectories();          //Must be done before InitializeTIB (which loads NTDLL -> USER32)
     174            InitializeTIB(TRUE);        //Must be done after HMInitialize!
    175175            RegisterDevices();
    176176            Win32DllBase::setDefaultRenaming();
     
    186186
    187187        case 1 :
    188         if (dllHandle)
    189         {
    190             UnregisterLxDll(dllHandle);
    191         }
    192         break;
     188            if (dllHandle)
     189            {
     190                UnregisterLxDll(dllHandle);
     191            }
     192            break;
    193193
    194194        default  :
Note: See TracChangeset for help on using the changeset viewer.