From b59c53ef27489240fbfaddc2fb1872ec5616268c Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 3 Feb 2009 03:51:15 +0000 Subject: [PATCH] #if out x86 specific inline code for other archictectures svn path=/branches/ros-amd64-bringup/; revision=39298 --- reactos/include/reactos/wine/exception.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/include/reactos/wine/exception.h b/reactos/include/reactos/wine/exception.h index ec156adf928..0b2fac6c66d 100644 --- a/reactos/include/reactos/wine/exception.h +++ b/reactos/include/reactos/wine/exception.h @@ -54,6 +54,7 @@ struct _EXCEPTION_REGISTRATION_RECORD #define EXCEPTION_VM86_STI 0x80000111 #define EXCEPTION_VM86_PICRETURN 0x80000112 +#ifdef _M_X86 static inline EXCEPTION_REGISTRATION_RECORD *__wine_push_frame( EXCEPTION_REGISTRATION_RECORD *frame ) { frame->Prev = (struct _EXCEPTION_REGISTRATION_RECORD *)__readfsdword(0); @@ -68,6 +69,7 @@ static inline EXCEPTION_REGISTRATION_RECORD *__wine_pop_frame( EXCEPTION_REGISTR } extern void __wine_enter_vm86( CONTEXT *context ); +#endif #ifdef __cplusplus }