reactos/lib/sdk/crt/except/amd64/seh.s
Timo Kreuzer ab6c2ee54c [CRT]
incude asm.inc instead of reactos/asm.h
Fix a bug that smeaked into _chkstk

svn path=/branches/cmake-bringup/; revision=49591
2010-11-15 01:29:12 +00:00

59 lines
1.1 KiB
ArmAsm

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT
* FILE: lib/crt/misc/i386/seh.S
* PURPOSE: SEH Support for the CRT
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
*/
/* INCLUDES ******************************************************************/
#include <asm.inc>
#include <ksamd64.inc>
#define DISPOSITION_DISMISS 0
#define DISPOSITION_CONTINUE_SEARCH 1
#define DISPOSITION_COLLIDED_UNWIND 3
/* GLOBALS *******************************************************************/
.globl _global_unwind2
.globl _local_unwind2
.globl _abnormal_termination
.globl _except_handler2
.globl _except_handler3
/* FUNCTIONS *****************************************************************/
.func _unwind_handler
_unwind_handler:
ret
.endfunc
.func _global_unwind2
_global_unwind2:
ret
.endfunc
.func _abnormal_termination
_abnormal_termination:
ret
.endfunc
.func _local_unwind2
_local_unwind2:
ret
.endfunc
.func _except_handler2
_except_handler2:
ret
.endfunc
.func _except_handler3
_except_handler3:
ret
.endfunc
END