From cfe78ef2b3a0817ab8c1a33ce32285e6721458e1 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Wed, 10 Nov 2010 22:11:12 +0000 Subject: [PATCH] [RTL] Instead of including ndk/asm.h, add the 2 neccessary constants to seh.s svn path=/branches/cmake-bringup/; revision=49550 --- lib/sdk/crt/except/i386/seh.s | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/sdk/crt/except/i386/seh.s b/lib/sdk/crt/except/i386/seh.s index ae19969ac2c..57049a41fd2 100644 --- a/lib/sdk/crt/except/i386/seh.s +++ b/lib/sdk/crt/except/i386/seh.s @@ -9,12 +9,15 @@ /* INCLUDES ******************************************************************/ #include -#include #define DISPOSITION_DISMISS 0 #define DISPOSITION_CONTINUE_SEARCH 1 #define DISPOSITION_COLLIDED_UNWIND 3 +#define EXCEPTION_EXIT_UNWIND 4 +#define EXCEPTION_UNWINDING 2 + + EXTERN _RtlUnwind@16:PROC /* GLOBALS *******************************************************************/ -- 2.17.1