Author: mnordell Date: Tue Sep 11 05:14:33 2012 New Revision: 57272
URL: http://svn.reactos.org/svn/reactos?rev=57272&view=rev Log: Unbreak MSVC build.
Modified: trunk/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c
Modified: trunk/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/kernel32/SetUnhan... ============================================================================== --- trunk/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c [iso-8859-1] (original) +++ trunk/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c [iso-8859-1] Tue Sep 11 05:14:33 2012 @@ -14,8 +14,8 @@ * Keep these returning different values, to prevent compiler folding * them into a single function, thereby voiding the test */ -WINAPI LONG Filter1(LPEXCEPTION_POINTERS p) { return 0; } -WINAPI LONG Filter2(LPEXCEPTION_POINTERS p) { return 1; } +LONG WINAPI Filter1(LPEXCEPTION_POINTERS p) { return 0; } +LONG WINAPI Filter2(LPEXCEPTION_POINTERS p) { return 1; }
/*