turn off EH in test program.

svn path=/trunk/; revision=4305
This commit is contained in:
Steven Edwards 2003-03-15 00:28:09 +00:00
parent cb418f8fa6
commit e8cb3842fb

View file

@ -230,7 +230,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
{
PAINTSTRUCT ps;
HDC Hdc = BeginPaint(HWnd, &ps);
#if 0
try
#endif
{
//
// TODO: Add palette support...
@ -243,7 +245,9 @@ LRESULT CALLBACK MainWndProc(HWND HWnd, UINT Msg, WPARAM WParam,
HMemDC, 0, 0,
SRCCOPY);
}
#if 0
catch (...)
#endif
{
EndPaint(HWnd, &ps);
}