Ignore:
Timestamp:
May 11, 2004, 11:08:20 AM (21 years ago)
Author:
sandervl
Message:

DT: Added wrappers for calling window handlers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/callwrap.asm

    r10379 r10602  
    1 ; $Id: callwrap.asm,v 1.1 2004-01-11 12:03:12 sandervl Exp $
     1; $Id: callwrap.asm,v 1.2 2004-05-11 09:08:19 sandervl Exp $
    22
    33;/*
     
    5252
    5353
     54        PUBLIC _WrapCallback4@20
     55; WrapCallback4(PFN lpfnFunction, DWORD hwnd, DWORD msg, DWORD wParam, DWORD lParam)
     56_WrapCallback4@20 proc near
     57        push  ebp
     58        mov   ebp, esp
     59        push  dword ptr [ebp+24]
     60        push  dword ptr [ebp+20]
     61        push  dword ptr [ebp+16]
     62        push  dword ptr [ebp+12]
     63        call  dword ptr [ebp+08]
     64
     65        mov   esp, ebp
     66        pop   ebp     
     67        ret   20
     68_WrapCallback4@20 endp
     69
    5470CODE32          ENDS
    5571
Note: See TracChangeset for help on using the changeset viewer.