From a7a4f843662cf8676e24c85f6e107230e749a64d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 22 Dec 2008 20:20:48 +0100 Subject: [PATCH] include: Add the needed dllimport attribute to the RtlUnwind declaration. --- include/wine/exception.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wine/exception.h b/include/wine/exception.h index ccace07aed3..7e0d5bc9908 100644 --- a/include/wine/exception.h +++ b/include/wine/exception.h @@ -233,7 +233,7 @@ extern void __wine_enter_vm86( CONTEXT *context ); #ifndef USE_COMPILER_EXCEPTIONS -extern void WINAPI RtlUnwind(PVOID,PVOID,PEXCEPTION_RECORD,PVOID); +NTSYSAPI void WINAPI RtlUnwind(PVOID,PVOID,PEXCEPTION_RECORD,PVOID); /* wrapper for RtlUnwind since it clobbers registers on Windows */ static inline void __wine_rtl_unwind( EXCEPTION_REGISTRATION_RECORD* frame, EXCEPTION_RECORD *record )