#if out x86 specific inline code for other archictectures
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 3 Feb 2009 03:51:40 +0000 (03:51 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 3 Feb 2009 03:51:40 +0000 (03:51 +0000)
svn path=/branches/ros-amd64-bringup/; revision=39299

reactos/lib/sdk/crt/include/internal/wine/cppexcept.h

index 2cead03..d6af82a 100644 (file)
@@ -52,6 +52,7 @@
 #define EH_STACK_INVALID    0x08
 #define EH_NESTED_CALL      0x10
 
+#ifdef _M_X86
 static inline EXCEPTION_REGISTRATION_RECORD *__wine_push_frame( EXCEPTION_REGISTRATION_RECORD *frame )
 {
     frame->Next = (struct _EXCEPTION_REGISTRATION_RECORD *)__readfsdword(0);
@@ -64,6 +65,7 @@ static inline EXCEPTION_REGISTRATION_RECORD *__wine_pop_frame( EXCEPTION_REGISTR
        __writefsdword(0, (unsigned long)frame->Next);
     return frame->Next;
 }
+#endif
 
 #define __TRY _SEH2_TRY
 #define __EXCEPT(func) _SEH2_EXCEPT(func(_SEH2_GetExceptionInformation()))