Changeset 5262


Ignore:
Timestamp:
Feb 24, 2001, 1:59:44 PM (24 years ago)
Author:
sandervl
Message:

set exitprocess flag in exe dtor

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/kernel32/windlllx.cpp

    r5075 r5262  
    1 /* $Id: windlllx.cpp,v 1.17 2001-02-09 18:31:05 sandervl Exp $ */
     1/* $Id: windlllx.cpp,v 1.18 2001-02-24 12:59:44 sandervl Exp $ */
    22
    33/*
     
    6969        return 0;
    7070   }
    71    //Make sure DosLoadModule is called at least
    72    //once for a dll (to make sure OS/2 doesn't unload the dll when it's
    73    //still needed)
    74 //testestest
     71   dprintf(("RegisterLxDll %x %s", hInstance, szFileName));
     72   //Make sure DosLoadModule is called at least once for a dll (to make sure
     73   //OS/2 doesn't unload the dll when it's still needed)
    7574   rc = DosLoadModule(szErrName, sizeof(szErrName), szFileName, &hInstance);
    7675   if(rc != 0) {
     
    7877        return 0;
    7978   }
    80 //testestest
     79
    8180   windll = new Win32LxDll(hInstance, EntryPoint, pResData, MajorImageVersion,
    8281                           MinorImageVersion, Subsystem);
  • TabularUnified trunk/src/kernel32/winexepeldr.cpp

    r4502 r5262  
    1 /* $Id: winexepeldr.cpp,v 1.14 2000-10-20 11:46:48 sandervl Exp $ */
     1/* $Id: winexepeldr.cpp,v 1.15 2001-02-24 12:59:44 sandervl Exp $ */
    22
    33/*
     
    165165Win32PeLdrExe::~Win32PeLdrExe()
    166166{
     167    fExitProcess = TRUE;
    167168}
    168169//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.