include: Add defines for GetExceptionCode, GetExceptionInformation and AbnormalTermination to excpt.h for the MS compiler when using compiler exceptions.
diff --git a/include/excpt.h b/include/excpt.h
index 13fa584..3369f3b 100644
--- a/include/excpt.h
+++ b/include/excpt.h
@@ -38,5 +38,14 @@
 #define EXCEPTION_CONTINUE_EXECUTION    -1
 
 
+#if defined(_MSC_VER) && defined(USE_COMPILER_EXCEPTIONS)
+#define GetExceptionCode    _exception_code
+#define GetExceptionInformation (struct _EXCEPTION_POINTERS *)_exception_info
+#define AbnormalTermination _abnormal_termination
+
+unsigned long __cdecl _exception_code(void);
+void * __cdecl _exception_info(void);
+int __cdecl _abnormal_termination(void);
+#endif /* defined(_MSC_VER) && defined(USE_COMPILER_EXCEPTIONS) */
 
 #endif /* __WINE_EXCPT_H */