Commit ba29e898 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Add defines for GetExceptionCode, GetExceptionInformation and…

include: Add defines for GetExceptionCode, GetExceptionInformation and AbnormalTermination to excpt.h for the MS compiler when using compiler exceptions.
parent 630e273d
......@@ -38,5 +38,14 @@ typedef enum _EXCEPTION_DISPOSITION
#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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment