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/src/kernel32/except.asm

    r223 r281  
    1 ; $Id: except.asm,v 1.5 1999-06-26 18:24:50 sandervl Exp $
     1; $Id: except.asm,v 1.6 1999-07-07 08:11:09 sandervl Exp $
    22
    33;/*
     
    175175SetFS   endp
    176176
     177        PUBLIC SetReturnFS
     178SetReturnFS proc near
     179        push    fs
     180        mov     eax, [esp+8]
     181        mov     fs, eax
     182        pop     eax
     183        ret
     184SetReturnFS endp
     185
    177186        PUBLIC getSS
    178187getSS   proc near
Note: See TracChangeset for help on using the changeset viewer.