Ignore:
Timestamp:
Mar 22, 2001, 7:16:54 PM (24 years ago)
Author:
sandervl
Message:

thread handler call workaround for app bugs + GetBinaryTypeA/W port

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptutil.asm

    r5070 r5354  
    1 ; $Id: exceptutil.asm,v 1.12 2001-02-08 10:23:40 sandervl Exp $
     1; $Id: exceptutil.asm,v 1.13 2001-03-22 18:16:40 sandervl Exp $
    22
    33;/*
     
    232232_Mul32x32to64 endp
    233233
     234        PUBLIC  _AsmCallThreadHandler
     235_AsmCallThreadHandler proc near
     236        push    ebp
     237        mov     ebp, esp
     238
     239        push    [ebp+12]
     240        mov     eax, dword ptr [ebp+8]
     241        call    eax
     242
     243        mov     esp, ebp
     244        pop     ebp
     245        ret
     246_AsmCallThreadHandler endp
     247
    234248CODE32          ENDS
    235249
Note: See TracChangeset for help on using the changeset viewer.