mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
Setjmp has one argument and returns zero
svn path=/trunk/; revision=9607
This commit is contained in:
parent
6312f5152f
commit
31af77a32a
1 changed files with 4 additions and 2 deletions
|
@ -24,9 +24,9 @@ segment .text use32
|
|||
; Note: the undecorated names are for Borland C++ (and possibly other compilers
|
||||
; using the OMF format)
|
||||
global SEHSetJmp
|
||||
global __SEHSetJmp
|
||||
global __SEHSetJmp@4
|
||||
SEHSetJmp:
|
||||
__SEHSetJmp@8:
|
||||
__SEHSetJmp@4:
|
||||
; jump buffer
|
||||
mov eax, [esp+4]
|
||||
|
||||
|
@ -43,6 +43,8 @@ __SEHSetJmp@8:
|
|||
mov [eax+12], ebx
|
||||
mov [eax+16], esi
|
||||
mov [eax+20], edi
|
||||
|
||||
xor eax, eax
|
||||
ret 4
|
||||
|
||||
global SEHLongJmp
|
||||
|
|
Loading…
Reference in a new issue