Changeset 281 for trunk/include/windll.h


Ignore:
Timestamp:
Jul 7, 1999, 10:11:58 AM (26 years ago)
Author:
sandervl
Message:

Major changes in PE2LX/KERNEL32 for TLS support. DLL VERSION INCREASED TO 3 AS THIS CHANGE MAKES IT INCOMPATIBLE WITH APPS CONVERTED WITH PREVIOUS VERSION OF PE2LX (OR WIN32K)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/windll.h

    r10 r281  
    1 /* $Id: windll.h,v 1.2 1999-05-27 15:17:59 phaller Exp $ */
     1/* $Id: windll.h,v 1.3 1999-07-07 08:11:09 sandervl Exp $ */
    22
    33/*
     
    5656static  Win32Dll *getFirst();
    5757
     58//Send DLL_THREAD_ATTACH message to all dlls for a new thread
     59static  void      attachThreadToAllDlls();
     60
     61//Send DLL_THREAD_DETACH message to all dlls for thread that's about to die
     62static  void      detachThreadFromAllDlls();
     63
     64//Setup TLS structure for all dlls for a new thread
     65static  void      tlsAttachThreadToAllDlls();
     66
     67//Destroy TLS structure for all dlls for a thread that's about to die
     68static  void      tlsDetachThreadFromAllDlls();
     69
    5870        ULONG     getApi(char *name);
    5971        ULONG     getApi(int ordinal);
Note: See TracChangeset for help on using the changeset viewer.