From d3190c9220dcf70cbdc751ed9e080cf7a21b002a Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Fri, 24 Jan 2003 19:48:13 +0000 Subject: [PATCH] Turned off SEH in test svn path=/trunk/; revision=4060 --- reactos/apps/tests/stretchblt/stretchblt.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/apps/tests/stretchblt/stretchblt.cpp b/reactos/apps/tests/stretchblt/stretchblt.cpp index 40035f05efc..19694803300 100644 --- a/reactos/apps/tests/stretchblt/stretchblt.cpp +++ b/reactos/apps/tests/stretchblt/stretchblt.cpp @@ -199,7 +199,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam, { PAINTSTRUCT ps; const HDC Hdc = BeginPaint(HWnd, &ps); +#if 0 try +#endif { // // TODO: add palette support (see Chapter 9)... @@ -232,8 +234,10 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam, SRCCOPY); } } - } + } +#if 0 catch (...) +#endif { EndPaint(HWnd, &ps); }