Changeset 6375 for trunk/src/kernel32/exceptutil.asm
- Timestamp:
- Jul 20, 2001, 5:42:38 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptutil.asm
r6133 r6375 1 ; $Id: exceptutil.asm,v 1.1 7 2001-06-27 19:09:35sandervl Exp $1 ; $Id: exceptutil.asm,v 1.18 2001-07-20 15:33:29 sandervl Exp $ 2 2 3 3 ;/* … … 160 160 getEAX endp 161 161 162 public getEDX 163 getEDX proc near 164 mov EAX, EDX 165 ret 166 endp 167 162 168 getEBX proc near 163 169 mov eax, ebx … … 292 298 EXTRN _GetThreadTEB@0:PROC 293 299 IFDEF DEBUG 294 EXTRN DbgEnabled :DWORD300 EXTRN DbgEnabledKERNEL32:DWORD 295 301 ENDIF 296 302 … … 375 381 ; 299 dprintf(("KERNEL32: Calling handler at %p code=%lx flags=%lx\n", 376 382 IFDEF DEBUG 377 cmp word ptr DbgEnabled +020h,01h383 cmp word ptr DbgEnabledKERNEL32+020h,01h 378 384 jne @BLBL20 379 385 mov eax,[ebp+08h]; record … … 400 406 IFDEF DEBUG 401 407 ; 302 dprintf(("KERNEL32: Handler returned %lx\n", ret)); 402 cmp word ptr DbgEnabled +020h,01h408 cmp word ptr DbgEnabledKERNEL32+020h,01h 403 409 jne @BLBL21 404 410 push dword ptr [ebp-010h]; ret
Note:
See TracChangeset
for help on using the changeset viewer.