Ignore:
Timestamp:
Jun 27, 2001, 9:09:36 PM (24 years ago)
Author:
sandervl
Message:

stack alignment change

File:
1 edited

Legend:

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

    r5564 r6133  
    1 ; $Id: exceptutil.asm,v 1.16 2001-04-22 09:00:19 sandervl Exp $
     1; $Id: exceptutil.asm,v 1.17 2001-06-27 19:09:35 sandervl Exp $
    22
    33;/*
     
    266266        ret
    267267_AsmCallThreadHandler endp
     268
     269        PUBLIC _CallEntryPoint
     270_CallEntryPoint proc near
     271        push    ebp
     272        mov     ebp, esp
     273
     274        mov     eax, esp
     275        sub     eax, 16
     276        and     eax, 0FFFFFFF0h
     277        add     eax, 4
     278        mov     esp, eax
     279
     280        push    dword ptr [ebp+12]
     281        mov     eax, dword ptr [ebp+8]
     282        call    eax
     283
     284        mov     esp, ebp
     285        pop     ebp
     286        ret
     287_CallEntryPoint endp
     288
    268289
    269290; 281 static DWORD EXC_CallHandler( WINEXCEPTION_RECORD *record, WINEXCEPTION_FRAME *frame,
Note: See TracChangeset for help on using the changeset viewer.