Ignore:
Timestamp:
Jul 20, 2001, 5:42:38 PM (24 years ago)
Author:
sandervl
Message:

initterm update

File:
1 edited

Legend:

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

    r6133 r6375  
    1 ; $Id: exceptutil.asm,v 1.17 2001-06-27 19:09:35 sandervl Exp $
     1; $Id: exceptutil.asm,v 1.18 2001-07-20 15:33:29 sandervl Exp $
    22
    33;/*
     
    160160getEAX  endp
    161161
     162public  getEDX
     163getEDX  proc    near
     164        mov     EAX, EDX
     165        ret
     166endp
     167
    162168getEBX  proc near
    163169        mov  eax, ebx
     
    292298        EXTRN _GetThreadTEB@0:PROC
    293299IFDEF DEBUG
    294         EXTRN DbgEnabled:DWORD
     300        EXTRN DbgEnabledKERNEL32:DWORD
    295301ENDIF
    296302
     
    375381; 299     dprintf(("KERNEL32: Calling handler at %p code=%lx flags=%lx\n",
    376382IFDEF DEBUG
    377         cmp     word ptr  DbgEnabled+020h,01h
     383        cmp     word ptr  DbgEnabledKERNEL32+020h,01h
    378384        jne     @BLBL20
    379385        mov     eax,[ebp+08h];  record
     
    400406IFDEF DEBUG
    401407; 302     dprintf(("KERNEL32: Handler returned %lx\n", ret));
    402         cmp     word ptr  DbgEnabled+020h,01h
     408        cmp     word ptr  DbgEnabledKERNEL32+020h,01h
    403409        jne     @BLBL21
    404410        push    dword ptr [ebp-010h];   ret
Note: See TracChangeset for help on using the changeset viewer.