Ignore:
Timestamp:
Jul 26, 2002, 12:48:40 PM (23 years ago)
Author:
sandervl
Message:

added method to detach process from all dlls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/windllbase.h

    r8609 r8923  
    1 /* $Id: windllbase.h,v 1.9 2002-06-09 10:48:50 sandervl Exp $ */
     1/* $Id: windllbase.h,v 1.10 2002-07-26 10:48:40 sandervl Exp $ */
    22
    33/*
     
    6666static  void      detachThreadFromAllDlls();
    6767
     68//Send DLL_PROCESS_DETACH message to all dlls for process that's about to end
     69static  void      detachProcessFromAllDlls();
     70
    6871//Setup TLS structure for all dlls for a new thread
    6972static  void      tlsAttachThreadToAllDlls();
     
    7881
    7982    //This counter is incremented when the dll has been loaded with LoadLibrary(Ex)
    80         //(== not loaded on behalf of another dll or the main exe)
     83    //(== not loaded on behalf of another dll or the main exe)
    8184    void      incDynamicLib();
    8285    void      decDynamicLib();
     
    9194    //Only called for kernel32
    9295    void      DisableUnload()  { fDisableUnload = TRUE; };
     96
     97    BOOL      IsUnloaded()     { return fUnloaded; };
    9398
    9499static  void      deleteDynamicLibs();
Note: See TracChangeset for help on using the changeset viewer.