Qian Hong : kernel32: Make SetUnhandledExceptionFilter hotpatchable.
Module: wine Branch: master Commit: caa0829d564310a126ad52a58865dc53f48e77e2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=caa0829d564310a126ad52a588... Author: Qian Hong <qhong(a)codeweavers.com> Date: Fri Jan 16 01:50:18 2015 +0800 kernel32: Make SetUnhandledExceptionFilter hotpatchable. --- dlls/kernel32/except.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/except.c b/dlls/kernel32/except.c index 77ec91d..bd50e88 100644 --- a/dlls/kernel32/except.c +++ b/dlls/kernel32/except.c @@ -461,7 +461,7 @@ LONG WINAPI UnhandledExceptionFilter(PEXCEPTION_POINTERS epointers) /*********************************************************************** * SetUnhandledExceptionFilter (KERNEL32.@) */ -LPTOP_LEVEL_EXCEPTION_FILTER WINAPI SetUnhandledExceptionFilter( +LPTOP_LEVEL_EXCEPTION_FILTER WINAPI DECLSPEC_HOTPATCH SetUnhandledExceptionFilter( LPTOP_LEVEL_EXCEPTION_FILTER filter ) { LPTOP_LEVEL_EXCEPTION_FILTER old = top_filter;
participants (1)
-
Alexandre Julliard