[NTDLL_APITEST] Disable NtContinue test when runtime checks are enabled
[reactos.git] / rostests / apitests / user32 / WndProc.c
index e9c70f1..bdcff2f 100644 (file)
@@ -5,9 +5,10 @@
  * PROGRAMMERS:
  */
 
-#include <stdio.h>
-#include <wine/test.h>
-#include <windows.h>
+#include <apitest.h>
+
+#include <wingdi.h>
+#include <winuser.h>
 
 /* Used wine Redraw test for proof in principle. */
 
@@ -98,5 +99,9 @@ static void test_wndproc(void)
 
 START_TEST(WndProc)
 {
+#ifdef __RUNTIME_CHECKS__
+    skip("This test breaks MSVC runtime checks!");
+    return;
+#endif /* __RUNTIME_CHECKS__ */
    test_wndproc();
 }