From 2d8ccfc5dc8f46cf9419795d91d026901421a23e Mon Sep 17 00:00:00 2001 From: Mike Nordell Date: Tue, 11 Sep 2012 05:14:33 +0000 Subject: [PATCH] Unbreak MSVC build. svn path=/trunk/; revision=57272 --- rostests/apitests/kernel32/SetUnhandledExceptionFilter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c b/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c index 45cbe378373..97f09b2fafd 100644 --- a/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c +++ b/rostests/apitests/kernel32/SetUnhandledExceptionFilter.c @@ -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; } /*